(c *csconfig.Config)
| 49 | } |
| 50 | |
| 51 | func CAPI(c *csconfig.Config) error { |
| 52 | if c.API.Server.OnlineClient == nil { |
| 53 | return fmt.Errorf("no configuration for Central API (CAPI) in '%s'", c.FilePath) |
| 54 | } |
| 55 | |
| 56 | return nil |
| 57 | } |
| 58 | |
| 59 | func PAPI(c *csconfig.Config) error { |
| 60 | if err := CAPI(c); err != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…