wikingo/main.go

12 lines
132 B
Go
Raw Normal View History

2022-03-15 21:50:11 +01:00
package main
import (
"fmt"
"github.com/oscarmlage/wikingo/server"
)
func main() {
fmt.Println("Hola mundo")
server.Serve()
}