feat: implemented initial login command
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package state
|
||||
|
||||
import "github.com/StevanFreeborn/gator/internal/config"
|
||||
|
||||
type State struct {
|
||||
Config *config.Config
|
||||
Arguments []string
|
||||
}
|
||||
|
||||
func NewState(c *config.Config, args []string) *State {
|
||||
return &State{Config: c, Arguments: args}
|
||||
}
|
||||
Reference in New Issue
Block a user