mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:37:17 +08:00
16 lines
230 B
Go
16 lines
230 B
Go
package service
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
type CliService struct {
|
|
}
|
|
|
|
func NewCliService() *CliService {
|
|
return &CliService{}
|
|
}
|
|
|
|
func (s *CliService) Test(c *cli.Context) error {
|
|
println("Hello, World!")
|
|
return nil
|
|
}
|