knowledgeBaseRepository implements the KnowledgeBaseRepository interface
| 14 | |
| 15 | // knowledgeBaseRepository implements the KnowledgeBaseRepository interface |
| 16 | type knowledgeBaseRepository struct { |
| 17 | db *gorm.DB |
| 18 | } |
| 19 | |
| 20 | // NewKnowledgeBaseRepository creates a new knowledge base repository |
| 21 | func NewKnowledgeBaseRepository(db *gorm.DB) interfaces.KnowledgeBaseRepository { |
nothing calls this directly
no outgoing calls
no test coverage detected