| 103 | } |
| 104 | |
| 105 | type Store struct { |
| 106 | schemas collection.Schemas |
| 107 | data map[config.GroupVersionKind]kindStore |
| 108 | skipValidation bool |
| 109 | syncer *syncer |
| 110 | stop chan struct{} |
| 111 | } |
| 112 | |
| 113 | func (cr *Store) hasSynced() bool { |
| 114 | for _, data := range cr.data { |
nothing calls this directly
no outgoing calls
no test coverage detected