mirror of
https://github.com/nkanaev/yarr.git
synced 2025-09-15 10:50:15 +00:00
13 lines
169 B
Go
13 lines
169 B
Go
//go:build !windows && !macos
|
|
// +build !windows,!macos
|
|
|
|
package platform
|
|
|
|
import (
|
|
"github.com/nkanaev/yarr/src/server"
|
|
)
|
|
|
|
func Start(s *server.Server) {
|
|
s.Start()
|
|
}
|