Move swagger+openapi setup to routes and decouple from run
This commit is contained in:
parent
9210b3b6ca
commit
a443d8d4e6
|
|
@ -105,6 +105,6 @@ func Run(serverOptions *genericoptions.ServerRunOptions) error {
|
||||||
if err := s.InstallAPIGroup(&apiGroupInfo); err != nil {
|
if err := s.InstallAPIGroup(&apiGroupInfo); err != nil {
|
||||||
return fmt.Errorf("Error in installing API: %v", err)
|
return fmt.Errorf("Error in installing API: %v", err)
|
||||||
}
|
}
|
||||||
s.Run()
|
s.PrepareRun().Run()
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue