| 508 | } |
| 509 | |
| 510 | type authzFakeStore struct { |
| 511 | data []struct { |
| 512 | typ config.GroupVersionKind |
| 513 | ns string |
| 514 | cfg config.Config |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | func (fs *authzFakeStore) add(cfg config.Config) { |
| 519 | fs.data = append(fs.data, struct { |
nothing calls this directly
no outgoing calls
no test coverage detected