* Fix #1810 * Remove go embed * Format code * Remove useless code Co-authored-by: anqiansong <anqiansong@bytedance.com>
This commit is contained in:
16
tools/goctl/api/spec/validate.go
Normal file
16
tools/goctl/api/spec/validate.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package spec
|
||||
|
||||
import "errors"
|
||||
|
||||
var ErrMissingService = errors.New("missing service")
|
||||
|
||||
// Validate validates Validate the integrity of the spec.
|
||||
func (s *ApiSpec) Validate() error {
|
||||
if len(s.Service.Name) == 0 {
|
||||
return ErrMissingService
|
||||
}
|
||||
if len(s.Service.Groups) == 0 {
|
||||
return ErrMissingService
|
||||
}
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user