Initial commit

This commit is contained in:
Bastien COIGNOUX
2025-07-14 14:14:48 +02:00
commit f999b17150
31 changed files with 3018 additions and 0 deletions

View File

@ -0,0 +1,10 @@
export const schema = {
tasks: {
id: 'string',
name: 'string',
estimation: 'number',
sprint: 'string',
status: 'string',
remaining: 'number'
}
}