feat: Added verify account route, closes #28
All checks were successful
Build and Deploy / Deploy Web (push) Successful in 1m2s
Build and Deploy / Deploy Discord Bot (push) Successful in 44s

This commit is contained in:
2023-06-05 16:05:03 +02:00
parent 11a59d39af
commit d74a51db7f
4 changed files with 38 additions and 0 deletions

View File

@@ -21,4 +21,11 @@ declare global {
teamId: string,
accessToken?: string
}
interface IWhitelist {
_id: string,
uuid: string,
connected: boolean,
code: string
}
}