mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
8 lines
127 B
Go
8 lines
127 B
Go
|
package models
|
||
|
|
||
|
// HTTPError a silly structure to keep our error page data.
|
||
|
type HTTPError struct {
|
||
|
Title string
|
||
|
Code int
|
||
|
}
|