13 lines
168 B
Go
13 lines
168 B
Go
/*
|
|
Copyright © 2024 Brian Buller <brian@bullercodeworks.com>
|
|
*/
|
|
package cli
|
|
|
|
type Program struct {
|
|
debug bool
|
|
}
|
|
|
|
func (p *Program) Initialize() error {
|
|
return nil
|
|
}
|