9 lines
114 B
Go
9 lines
114 B
Go
package service
|
|
|
|
type StateService struct {
|
|
}
|
|
|
|
func (s *StateService) State() (bool, error) {
|
|
return true, nil
|
|
}
|