1
0
Fork 0
mirror of https://github.com/Luzifer/cloudkeys-go.git synced 2024-11-09 22:50:05 +00:00
cloudkeys-go/server.go
Knut Ahlers 0ad1681ee0
Remove old assets, prepare adding Vue serving
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-11-04 14:32:00 +01:00

10 lines
96 B
Go

package main
import (
"net/http"
)
func init() {
initialize()
http.Handle("/", router())
}