fix: type conversion

This commit is contained in:
2023-12-27 07:42:38 +01:00
parent 69389d030b
commit 1dc6ce6e5e
3 changed files with 8 additions and 11 deletions

View File

@@ -1,12 +1,10 @@
package provider
import "time"
type ProviderIface interface {
Login(string, string) error
SwitchWIFI(SwitchConfig) error
}
type SwitchConfig struct {
SubmitDelay time.Duration
SubmitDelay int
}