Documentation ¶
Index ¶
- Variables
- func Check(err error)
- func Convert(f io.Reader, chars []string, subWidth, subHeight int, imageSwitch bool, ...) (string, *image.NRGBA, error)
- func GetBytes(url string) ([]byte, error)
- func PathExists(path string) bool
- func ReadAllText(path string) string
- func WriteAllText(path, text string)
- type CQHttpApiConfig
- type GoCQHttpConfig
- type GoCQWebsocketConfig
- type JsonConfig
Constants ¶
This section is empty.
Variables ¶
View Source
var Colors = map[string]color.RGBA{"black": {0, 0, 0, 255},
"gray": {140, 140, 140, 255},
"red": {255, 0, 0, 255},
"green": {0, 128, 0, 255},
"blue": {0, 0, 255, 255}}
View Source
var IMAGE_PATH = path.Join("data", "images")
Functions ¶
func PathExists ¶
func ReadAllText ¶
func WriteAllText ¶
func WriteAllText(path, text string)
Types ¶
type CQHttpApiConfig ¶
type CQHttpApiConfig struct { Host string `json:"host"` Port uint16 `json:"port"` UseHttp bool `json:"use_http"` WSHost string `json:"ws_host"` WSPort uint16 `json:"ws_port"` UseWS bool `json:"use_ws"` WSReverseUrl string `json:"ws_reverse_url"` WSReverseApiUrl string `json:"ws_reverse_api_url"` WSReverseEventUrl string `json:"ws_reverse_event_url"` WSReverseReconnectInterval uint16 `json:"ws_reverse_reconnect_interval"` WSReverseReconnectOnCode1000 bool `json:"ws_reverse_reconnect_on_code_1000"` UseWsReverse bool `json:"use_ws_reverse"` PostUrl string `json:"post_url"` AccessToken string `json:"access_token"` Secret string `json:"secret"` PostMessageFormat string `json:"post_message_format"` }
type GoCQHttpConfig ¶
type GoCQWebsocketConfig ¶
type JsonConfig ¶
type JsonConfig struct { Uin int64 `json:"uin"` Password string `json:"password"` EnableDB bool `json:"enable_db"` AccessToken string `json:"access_token"` Reconnect bool `json:"reconnect"` ReconnectDelay int `json:"reconnect_delay"` HttpConfig *GoCQHttpConfig `json:"http_config"` WSConfig *GoCQWebsocketConfig `json:"ws_config"` }
func DefaultConfig ¶
func DefaultConfig() *JsonConfig
func Load ¶
func Load(p string) *JsonConfig
func (*JsonConfig) Save ¶
func (c *JsonConfig) Save(p string) error
Click to show internal directories.
Click to hide internal directories.