state.go 120 B

1234567
  1. package parser
  2. import "zero/tools/goctl/api/spec"
  3. type state interface {
  4. process(api *spec.ApiSpec) (state, error)
  5. }