13 lines
184 B
Go
13 lines
184 B
Go
package provider
|
|
|
|
import "time"
|
|
|
|
type ProviderIface interface {
|
|
Login(string, string) error
|
|
SwitchWIFI(SwitchConfig) error
|
|
}
|
|
|
|
type SwitchConfig struct {
|
|
SubmitDelay time.Duration
|
|
}
|