Add skeleton project.
[armadillo.git] / src / main.go
1
2 package main
3
4 import (
5 "./server"
6 "fmt"
7 )
8
9 func main() {
10 fmt.Print("Hello world")
11 server.RunFrontEnd()
12 }
13