| 50 | import { polrDb } from './templates/polr-db'; |
| 51 | import { djangoAxesDb } from './templates/django-axes-db'; |
| 52 | export interface Template { |
| 53 | slug: string; |
| 54 | name: string; |
| 55 | shortDescription: string; |
| 56 | description: string; |
| 57 | image: string; |
| 58 | imageDark: string; |
| 59 | diagram: Diagram; |
| 60 | tags: string[]; |
| 61 | featured: boolean; |
| 62 | url?: string; |
| 63 | } |
| 64 | |
| 65 | export const templates: Template[] = [ |
| 66 | employeeDb, |
nothing calls this directly
no outgoing calls
no test coverage detected