Files
gator/internal/state/state.go
T

13 lines
243 B
Go
Raw Normal View History

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}
}