mirror of
https://github.com/therootcompany/serviceman.git
synced 2025-04-02 22:00:37 +00:00
16 lines
242 B
Go
16 lines
242 B
Go
// +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
|
|
}
|