diff options
Diffstat (limited to 'pkg/server/status.go')
| -rw-r--r-- | pkg/server/status.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/server/status.go b/pkg/server/status.go index aff3844..4689274 100644 --- a/pkg/server/status.go +++ b/pkg/server/status.go @@ -4,12 +4,12 @@ import ( "tunnel/pkg/config" ) -func init() { - newCmd(status, "status") -} - func status(r *request) { r.expect() r.Printf("since %s", r.c.s.since.Format(config.TimeFormat)) } + +func init() { + newCmd(status, "status") +} |
