cwtch/server/app/main.go

14 lines
203 B
Go

package main
import (
cwtchserver "git.mascherari.press/cwtch/server"
"log"
)
func main() {
server := new(cwtchserver.Server)
log.Printf("starting cwtch server...")
server.Run("./private_key")
}