This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
e621-sdk-go/pkg/e621/model/basic.go

12 lines
160 B
Go
Raw Normal View History

2023-10-16 13:56:00 +00:00
package model
import "net/http"
2023-10-16 13:56:00 +00:00
type RequestContext struct {
Client http.Client
2023-10-16 13:56:00 +00:00
Host string
UserAgent string
Username string
APIKey string
}