moth/cmd/mothd/main.go

54 lines
971 B
Go
Raw Normal View History

2019-09-02 19:47:24 -06:00
package main
import (
"github.com/namsral/flag"
2019-12-01 18:58:09 -07:00
"github.com/spf13/afero"
2019-09-02 19:47:24 -06:00
"log"
"time"
2019-09-02 19:47:24 -06:00
)
func main() {
log.Print("Started")
themePath := flag.String(
"theme",
"theme",
"Path to theme files",
)
statePath := flag.String(
"state",
"state",
"Path to state files",
)
puzzlePath := flag.String(
"mothballs",
"mothballs",
"Path to mothballs to host",
)
refreshInterval := flag.Duration(
"refresh",
2*time.Second,
"Duration between maintenance tasks",
)
bindStr := flag.String(
"bind",
":8000",
"Bind [host]:port for HTTP service",
)
2019-12-01 18:58:09 -07:00
stateFs := afero.NewBasePathFs(afero.NewOsFs(), *statePath)
theme := NewTheme(*themePath)
2019-12-01 18:58:09 -07:00
state := NewState(stateFs)
puzzles := NewMothballs(*puzzlePath)
go theme.Run(*refreshInterval)
go state.Run(*refreshInterval)
go puzzles.Run(*refreshInterval)
2019-12-01 18:58:09 -07:00
log.Println("I would be binding to", *bindStr)
2019-09-02 19:47:24 -06:00
time.Sleep(1 * time.Second)
log.Print(state.Export(""))
time.Sleep(19 * time.Second)
}