From 2370a2051b980bd4b3a1934611b9fb3c79a92318 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Sat, 28 Dec 2024 08:36:00 +0300 Subject: [PATCH] fix: add OAuthAction --- src/shared/structs/oAuthAction.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/shared/structs/oAuthAction.ts diff --git a/src/shared/structs/oAuthAction.ts b/src/shared/structs/oAuthAction.ts new file mode 100644 index 0000000..7864c28 --- /dev/null +++ b/src/shared/structs/oAuthAction.ts @@ -0,0 +1,4 @@ +export enum OAuthAction { + Login, + Bind +}