Add the initial rough skeleton for a config tool.

This commit is contained in:
Anna Rose Wiggins 2025-08-11 21:44:05 -04:00
parent 8d2b15a7c8
commit 1ac689cd04
3 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,11 @@
package configparser
import "fmt"
type EmptyConfigError struct {
directory string
}
func (e *EmptyConfigError) Error() string {
return fmt.Sprintf("no config files found at %s", e.directory)
}