implement nat & ddns page (#5)

This commit is contained in:
UUBulb
2024-11-19 14:55:21 +08:00
committed by GitHub
parent fc923f3ab1
commit 37a121559f
12 changed files with 974 additions and 7 deletions

12
src/types/ddns.ts Normal file
View File

@@ -0,0 +1,12 @@
export const ddnsTypes: Record<number, string> = {
1: "GET",
2: "POST",
3: "PATCH",
4: "DELETE",
5: "PUT",
}
export const ddnsRequestTypes: Record<number, string> = {
1: "JSON",
2: "Form",
}

View File

@@ -2,3 +2,4 @@ export * from './mainStore';
export * from './authContext';
export * from './api';
export * from './service';
export * from './ddns';