hotime/example/main.go

27 lines
541 B
Go
Raw Normal View History

2017-08-17 02:37:00 +00:00
package main
import (
2022-03-13 09:02:19 +00:00
. "code.hoteas.com/golang/hotime"
2017-09-05 03:09:13 +00:00
"fmt"
2018-04-08 16:02:13 +00:00
"time"
2017-08-17 02:37:00 +00:00
)
func main() {
date, _ := time.Parse("2006-01-02 15:04", time.Now().Format("2006-01-02")+" 14:00")
fmt.Println(date, date.Unix())
2021-10-26 16:27:24 +00:00
//fmt.Println("0123456"[1:7])
2022-03-13 09:02:19 +00:00
appIns := Init("config/config.json")
2022-03-12 21:06:28 +00:00
//a:=Map{}
//a.GetBool()
2022-04-20 14:47:58 +00:00
//appIns.SetConnectListener(func(that *Context) (isFinished bool) {
//
// return isFinished
//})
2022-03-13 09:02:19 +00:00
//appIns.Db.Action(func(db db.HoTimeDB) (isSuccess bool) {
// return isSuccess
//})
2022-03-14 08:48:19 +00:00
appIns.Run(Router{
2022-04-20 14:47:58 +00:00
//"app": app.Project,
2022-03-14 08:48:19 +00:00
})
2017-08-17 02:37:00 +00:00
}