Initial frontend draft
This commit is contained in:
parent
1606d1faf0
commit
b6293beeec
21 changed files with 4105 additions and 150 deletions
14
frontend/app/Lib/Library.ts
Normal file
14
frontend/app/Lib/Library.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import type Library from "~/Models/Library";
|
||||
|
||||
|
||||
export const FetchLibraries = async (): Promise<Array<Library>> => {
|
||||
return [];
|
||||
}
|
||||
|
||||
export const FetchLibrary = async (id: string): Promise<Library> => {
|
||||
return {
|
||||
id: "",
|
||||
name: "",
|
||||
servers: []
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue