13 lines
226 B
Go
13 lines
226 B
Go
package main
|
|
|
|
import (
|
|
"github.com/KristianJBorgwarth/dendrite.daemon/core/http"
|
|
"github.com/KristianJBorgwarth/dendrite.daemon/core/logging"
|
|
)
|
|
|
|
func main() {
|
|
logging.Init()
|
|
|
|
srv := server.New(nil, ":8080")
|
|
srv.Start()
|
|
}
|