2023-12-27 07:42:38 +01:00

11 lines
159 B
Go

package provider
type ProviderIface interface {
Login(string, string) error
SwitchWIFI(SwitchConfig) error
}
type SwitchConfig struct {
SubmitDelay int
}