Put types and enums that both the server and web need into a common area

This commit is contained in:
Oliver-Akins 2021-12-28 20:08:42 -07:00
parent 526b4c5771
commit 4c957cce07
4 changed files with 37 additions and 0 deletions

7
common/enums/Status.ts Normal file
View file

@ -0,0 +1,7 @@
export const Status = {
Success: 200,
UnknownError: 400,
OutOfDate: 401,
NotFound: 404,
Teapot: 418,
}