Initial Commit

This commit is contained in:
2020-10-09 15:45:04 -05:00
commit c253c13942
9 changed files with 217 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
package main
import (
"fmt"
"os"
)
const (
AppName = "netcaptain"
AppVersion = 1
)
var app *AppState
func main() {
fmt.Println("ncpt - NetCaptain")
app = NewApp()
if app.Error != nil {
PrintErr(app.Error.Error())
os.Exit(1)
}
os.Exit(app.run())
}