summaryrefslogtreecommitdiff
path: root/pkg/server/status.go
blob: aff384470f5a9c40d23061efe2310df289a6965c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package server

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))
}