10 lines
205 B
Go
10 lines
205 B
Go
package models
|
|
|
|
// RequestInfo is a parsed request information to throw into application's handler.
|
|
type RequestInfo struct {
|
|
Application string
|
|
Metric string
|
|
RequestType string
|
|
APIVersion int
|
|
}
|