feat: handle multiple providers

This commit is contained in:
2023-06-02 03:24:12 +02:00
parent 7742a70f6c
commit 5d5d90d3f6
6 changed files with 272 additions and 121 deletions

6
pkg/provider/provider.go Normal file
View File

@@ -0,0 +1,6 @@
package provider
type ProviderIface interface {
Login(user, pass string) error
SwitchWIFI() error
}