cwtch/server/app/main.go

14 lines
203 B
Go
Raw Normal View History

2018-03-30 21:16:51 +00:00
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")
}