wikingo/main.go

12 lines
132 B
Go

package main
import (
"fmt"
"github.com/oscarmlage/wikingo/server"
)
func main() {
fmt.Println("Hola mundo")
server.Serve()
}