initial commit

This commit is contained in:
brent saner
2024-12-17 17:39:10 -05:00
commit 010643757e
29 changed files with 1644 additions and 0 deletions

10
conf/errs.go Normal file
View File

@@ -0,0 +1,10 @@
package conf
import (
`errors`
)
var (
ErrMissingUser error = errors.New("at least one tunnel is missing a username and no default username was provided")
ErrUnkownSyntax error = errors.New("unknown/unsupported configuration syntax")
)