2026-07-31 08:06:29 -05:00
|
|
|
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}
|
|
|
|
|
}
|