show text

This commit is contained in:
Zack Scholl 2018-09-21 22:31:13 -07:00
parent 91532085c7
commit 55bd83576a
2 changed files with 3 additions and 0 deletions

View File

@ -85,6 +85,7 @@ func main() {
cr.Stdout = c.GlobalBool("stdout")
cr.LocalOnly = c.GlobalBool("local")
cr.NoLocal = c.GlobalBool("no-local")
cr.ShowText = true
return nil
}

View File

@ -14,6 +14,8 @@ import (
type Croc struct {
// Options for all
Debug bool
// ShowText will display text on the stderr
ShowText bool
// Options for relay
ServerPort string