Skip to content

Commit

Permalink
Update services.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaray committed Dec 27, 2024
1 parent 9e4584d commit 5f94d48
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions data/services.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import process from "node:process";

export interface Service {
[key: string]: { name: string; ref: string; url: string; logo: string };
}
Expand All @@ -23,15 +25,17 @@ export const services: Service = {

//
export const vastai = {
key: process.env.VASTAI_KEY,
createTemplate: () => {},
deleteTemplate: () => {},
updateTemplate: () => {},
getTemplate: (id?: string, hash?: string) => {},
getTemplate: (id: string) => {},
};

export const runpodio = {
key: process.env.RUNPOD_KEY,
createTemplate: () => {},
deleteTemplate: () => {},
updateTemplate: () => {},
getTemplate: (id?: string, hash?: string) => {},
getTemplate: (id: string) => {},
};

0 comments on commit 5f94d48

Please sign in to comment.