9 lines
192 B
Go
9 lines
192 B
Go
package config
|
|
|
|
type Eway struct {
|
|
SessionID string `toml:"session_id"`
|
|
SessionUser string `toml:"session_user"`
|
|
OwnerID string `toml:"owner_id"`
|
|
Debug bool `toml:"debug"`
|
|
}
|