feat: add api server class

This commit is contained in:
2024-12-24 13:25:36 +09:00
parent cc655ac864
commit a06e72d24a
124 changed files with 460 additions and 413 deletions

29
public/index.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>BPSets</title>
</head>
<body>
<h1>BPSets</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Priority</th>
<th>Category</th>
<th>Pass</th>
<th>Resource Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="6">Loading...</tdc>
</tr>
</tbody>
</table>
</body>
</html>

3
public/style.css Normal file
View File

@ -0,0 +1,3 @@
:root {
font-family: Arial, Helvetica, sans-serif;
}