13 lines
244 B
Go
13 lines
244 B
Go
package main
|
|
|
|
import (
|
|
"github.com/KristianJBorgwarth/dendrite.daemon/core/http"
|
|
"github.com/KristianJBorgwarth/dendrite.daemon/core/logging"
|
|
_ "modernc.org/sqlite"
|
|
)
|
|
|
|
func main() {
|
|
logging.Init()
|
|
srv := server.New(":6969")
|
|
srv.Start()
|
|
}
|