10 lines
124 B
Go
10 lines
124 B
Go
|
package service
|
||
|
|
||
|
type ContainerService struct {
|
||
|
}
|
||
|
|
||
|
func (cs *ContainerService) State() (bool, error) {
|
||
|
|
||
|
return true, nil
|
||
|
}
|