summaryrefslogtreecommitdiff
path: root/modules/timeModule.go
blob: 501b2fe1ea0995551c18a21b092f3e7830a2a92b (plain)
1
2
3
4
5
6
7
8
9
10
package modules

import "time"

type TimeModule struct {
}

func (_ TimeModule) GetInfo() (string, error) {
	return time.Now().Format(time.Kitchen), nil
}