mirror of
https://github.com/nkanaev/yarr.git
synced 2025-05-24 00:33:14 +00:00
11 lines
119 B
Go
11 lines
119 B
Go
package main
|
|
|
|
import (
|
|
"github.com/nkanaev/yarr/server"
|
|
)
|
|
|
|
func main() {
|
|
srv := server.New()
|
|
srv.ListenAndServe()
|
|
}
|