Skip to content

Commit

Permalink
feat: add cnames prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Apr 24, 2023
1 parent 26ef94c commit c22f21d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions data/cnames.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { ICnames } from "./interfaces";

export const data: ICnames = {
active: {
"scathach": "scathachgrip.github.io",
}
};
5 changes: 5 additions & 0 deletions data/interfaces.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export interface ICnames {
active: {
[key: string]: string;
}
};

0 comments on commit c22f21d

Please sign in to comment.