feat: task list generated based on fetch

This commit is contained in:
rngsurrounded
2025-03-02 21:31:01 +09:00
parent b67d03798a
commit bcfd0968b9
5 changed files with 29 additions and 68 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ export interface Task {
id: string;
title: string;
description: string;
type: 'input' | 'file' | 'code';
type: TaskType;
in_competition_position: number;
points: number;
}