A cross-platform service manager
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
 
 
 

15 行
242 B

// +build !windows,!linux,!darwin
package manager
import (
"git.rootprojects.org/root/serviceman/service"
)
func Render(c *service.Service) ([]byte, error) {
return nil, nil
}
func install(c *service.Service) error {
return nil, nil
}