Files
eway/internal/config/eway.go
2024-01-29 00:09:30 +03:00

11 lines
265 B
Go

package config
type Eway struct {
Login string `toml:"login"`
Password string `toml:"password"`
SessionID string `toml:"session_id"`
SessionUser string `toml:"session_user"`
OwnerID string `toml:"owner_id"`
Debug bool `toml:"debug"`
}