goblog/main.go
2018-11-04 22:14:34 +01:00

25 lines
373 B
Go

package main
import (
"time"
//"fmt"
)
var messages []*string
func main() {
initializeDatabase()
startServer()
//listener, err = net.Listen("socket", "/tmp/
}
type BlogPost struct {
Id int64 `"id"`
Content string `"content"`
Author string `"author"`
Secret string `"secret"`
Time time.Time `"time"`
FTime string `"ftime"`
}