| 1234567891011121314151617 |
- package config
- type GeneralConfig struct {
- UserAgent string `toml:"user_agent"`
- FetchMessagesLimit int `toml:"fetch_messages_limit"`
- Mouse bool `toml:"mouse"`
- Timestamps bool `toml:"timestamps"`
- }
- func newGeneralConfig() GeneralConfig {
- return GeneralConfig{
- UserAgent: "Mozilla/5.0 (X11; Linux x86_64; rv:95.0) Gecko/20100101 Firefox/95.0",
- FetchMessagesLimit: 50,
- Mouse: true,
- Timestamps: false,
- }
- }
|