import type Library from "~/Models/Library"; export const FetchLibraries = async (): Promise> => { return []; } export const FetchLibrary = async (id: string): Promise => { return { id: "", name: "", servers: [] }; }