feat: add otp model + implementation for sql

This commit is contained in:
Lakhan Samani
2022-07-23 15:55:06 +05:30
parent 9ef5f33f7a
commit f6c67243b9
9 changed files with 230 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ type CollectionList struct {
Webhook string
WebhookLog string
EmailTemplate string
OTP string
}
var (
@@ -23,5 +24,6 @@ var (
Webhook: Prefix + "webhook",
WebhookLog: Prefix + "webhook_log",
EmailTemplate: Prefix + "email_template",
OTP: Prefix + "otps",
}
)