12 lines
160 B
Go
12 lines
160 B
Go
package model
|
|
|
|
import "net/http"
|
|
|
|
type RequestContext struct {
|
|
Client http.Client
|
|
Host string
|
|
UserAgent string
|
|
Username string
|
|
APIKey string
|
|
}
|