authkit 0.1.2

A better-auth inspired authentication library for Rust. Framework-agnostic, secure by default, with database-backed sessions and email verification.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
# AuthKit

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Rust](https://img.shields.io/badge/rust-2024-orange.svg)](https://www.rust-lang.org)

A better-auth–inspired authentication library for Rust. Plug-and-play, framework-agnostic, and opinionated yet extensible.

## Overview

AuthKit is a Rust authentication library designed to feel like [better-auth](https://github.com/better-auth/better-auth), but for the Rust ecosystem. It provides secure, database-backed authentication with a single, unified API that works across any contextβ€”HTTP servers, CLI tools, background workers, or proxies.

### Key Features

- **πŸ”’ Secure by Default** - Argon2id password hashing, timing-safe comparisons, secure token generation
- **🎯 Single Entry Point** - One `Auth` object for all authentication operations
- **πŸ”§ Framework-Agnostic** - Works with Axum, Actix, Rocket, or standaloneβ€”no framework lock-in
- **πŸ’Ύ Database-Backed** - SQLite and PostgreSQL support via SQLx (hidden from API)
- **πŸš€ Simple API** - Register, login, verify, logoutβ€”same API everywhere
- **⚑ Async-First** - Built on Tokio for high-performance async operations
- **🎨 Extensible** - Swappable password and session strategies

## Quick Start

### Installation

Add AuthKit to your `Cargo.toml`:

```toml
[dependencies]
authkit = "0.1"
tokio = { version = "1.28", features = ["full"] }
```

### Basic Usage

```rust
use authkit::prelude::*;

#[tokio::main]
async fn main() -> Result<()> {
    // Create an Auth instance
    let auth = Auth::builder()
        .database(Database::sqlite("auth.db").await?)
        .build()?;

    // Run migrations
    auth.migrate().await?;

    // Register a new user
    let user = auth.register(Register {
        email: "user@example.com".into(),
        password: "secure-password".into(),
    }).await?;

    println!("User registered: {}", user.email);

    // Login
    let session = auth.login(Login {
        email: "user@example.com".into(),
        password: "secure-password".into(),
    }).await?;

    println!("Session token: {}", session.token);

    // Verify a session
    let user = auth.verify(Verify {
        token: session.token.clone(),
    }).await?;

    println!("Verified user: {}", user.email);

    // Logout
    auth.logout(Logout {
        token: session.token,
    }).await?;

    println!("Logged out successfully");

    Ok(())
}
```

## Design Philosophy

AuthKit is built around five core principles:

### 1. Single Entry Point

Users interact with only one object: `Auth`. No repositories, no generics, no leaked internals.

```rust
let auth = Auth::builder()
    .database(Database::sqlite("auth.db").await?)
    .build()?;
```

### 2. Framework-Agnostic by Design

AuthKit doesn't depend on Axum, Actix, Rocket, Hyper, or Tower. It works equally well in:

- REST APIs
- CLI tools
- gRPC services
- Proxies (Pingora)
- Background workers

Framework adapters live outside the core library.

### 3. Opinionated Defaults, Explicit Overrides

Ships with secure defaults:
- Argon2id password hashing
- Database-backed sessions
- Secure token generation
- Sensible expiry defaults

Override behavior explicitly when needed, but never accidentally weaken security.

### 4. No Leaky Abstractions

AuthKit hides implementation details:
- SQLx internals
- Database schemas
- Crypto implementations
- Token formats

Users never interact with traits, repositories, lifetimes, or generic parameters in the public API.

### 5. Same API Everywhere

```rust
auth.register(Register { ... }).await?;
auth.login(Login { ... }).await?;
auth.verify(Verify { ... }).await?;
auth.logout(Logout { ... }).await?;
```

These calls behave identically whether invoked from an HTTP handler, CLI command, test, or background task.

## Architecture

```
Auth
 └── AuthInner (Arc)
     β”œβ”€β”€ Database (trait object)
     β”œβ”€β”€ PasswordStrategy
     β”œβ”€β”€ SessionStrategy
     └── TokenStrategy
```

**Key characteristics:**
- `Auth` is cheap to clone (uses `Arc` internally)
- Internals are completely hidden
- Components are swappable via builder pattern
- No global state required

### Strategy Pattern

AuthKit uses a consistent strategy pattern for all authentication components:

```
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                    Application Layer                    β”‚
β”‚  (Auth, Operations: register, login, verify, etc.)      β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                      β”‚
                      ↓
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                  Strategy Layer                         β”‚
β”‚  β€’ PasswordStrategy   (Argon2, Bcrypt, etc.)            β”‚
β”‚  β€’ SessionStrategy    (Database-backed)                 β”‚
β”‚  β€’ TokenStrategy      (Database-backed)                 β”‚
β”‚                                                         β”‚
β”‚  Strategies receive &dyn DatabaseTrait as parameter     β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                      β”‚
                      ↓
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚              DatabaseTrait (Abstraction)                β”‚
β”‚                                                         β”‚
β”‚  β€’ User Operations (create, find)                       β”‚
β”‚  β€’ Session Operations (create, find, delete)            β”‚
β”‚  β€’ Token Operations (create, verify, mark used)         β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                      β”‚
                      ↓
β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚            Backend Implementations                      β”‚
β”‚  β€’ SqliteDatabase   (SQLite with ? params)              β”‚
β”‚  β€’ PostgresDatabase (Postgres with $N params)           β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
```

**Design Benefits:**
- Strategies remain stateless and don't store database references
- Database logic is centralized in backend implementations
- Easy to add new database backends (MySQL, etc.)
- Easy to mock for testing
- No SQLx types leak into public API

## Feature Flags

AuthKit uses Cargo features for optional functionality:

```toml
[features]
default = ["sqlite", "argon2"]

# Database backends
sqlite = ["sqlx/sqlite", "sqlx/runtime-tokio"]
postgres = ["sqlx/postgres", "sqlx/runtime-tokio"]

# Password hashing strategies
argon2 = ["dep:argon2", "dep:password-hash"]
bcrypt = ["dep:bcrypt"]

# Token strategies
jwt = ["dep:jsonwebtoken"]
```

### Examples

**PostgreSQL with Argon2:**
```toml
authkit = { version = "0.1", default-features = false, features = ["postgres", "argon2"] }
```

**SQLite with bcrypt:**
```toml
authkit = { version = "0.1", default-features = false, features = ["sqlite", "bcrypt"] }
```

## Database Support

### SQLite

```rust
let auth = Auth::builder()
    .database(Database::sqlite("auth.db").await?)
    .build()?;
```

### PostgreSQL

```rust
let auth = Auth::builder()
    .database(Database::postgres("postgresql://user:pass@localhost/authdb").await?)
    .build()?;
```

### Migrations

AuthKit manages its own schema and migrations:

```rust
auth.migrate().await?;
```

**Database Schema:**
- `users` - User accounts with email and password
- `sessions` - Active user sessions
- `tokens` - Unified table for email verification, password reset, etc.

All tables include proper indexes and foreign key constraints for optimal performance and data integrity.

## API Reference

### Auth Operations

#### Register

Create a new user account:

```rust
let user = auth.register(Register {
    email: "user@example.com".into(),
    password: "secure-password".into(),
}).await?;
```

**Validation:**
- Email must be valid format
- Password must meet minimum security requirements
- Email must be unique

#### Login

Authenticate and create a session:

```rust
let session = auth.login(Login {
    email: "user@example.com".into(),
    password: "secure-password".into(),
}).await?;
```

**Returns:**
- `Session` with token, user_id, and expiration

#### Verify

Verify a session token and retrieve user:

```rust
let user = auth.verify(Verify {
    token: session_token,
}).await?;
```

**Errors:**
- Invalid token
- Expired session
- Session not found

#### Logout

Invalidate a session:

```rust
auth.logout(Logout {
    token: session_token,
}).await?;
```

#### Send Email Verification

Generate and optionally send a verification token for a user:

```rust
// Option 1: Manual email handling (no EmailSender configured)
let verification = auth.send_email_verification(SendEmailVerification {
    user_id: user.id.clone(),
}).await?;

// You handle sending the email
send_email(&verification.email, &verification.token).await?;

// Option 2: Automatic email sending (with EmailSender configured)
// Email is sent automatically, token still returned
let verification = auth.send_email_verification(SendEmailVerification {
    user_id: user.id.clone(),
}).await?;
```

**Returns:**
- `VerificationToken` with token, email, and expiration time
- Token expires in 24 hours

**Errors:**
- User not found
- Email already verified
- Email send failed (if EmailSender is configured)

#### Verify Email

Verify a user's email using a token:

```rust
let verified_user = auth.verify_email(VerifyEmail {
    token: verification_token,
}).await?;
```

**Returns:**
- Updated `User` with `email_verified` set to `true`

**Errors:**
- Invalid or expired token
- Token already used
- Email already verified

#### Resend Email Verification

Resend verification token to a user:

```rust
let verification = auth.resend_email_verification(ResendEmailVerification {
    email: "user@example.com".into(),
}).await?;
```

**Returns:**
- New `VerificationToken` (old tokens remain valid until used or expired)

**Errors:**
- User not found
- Email already verified

### Types

#### User

```rust
pub struct User {
    pub id: String,
    pub email: String,
    pub created_at: i64,
    pub email_verified: bool,
    pub email_verified_at: Option<i64>,
}
```

#### Session

```rust
pub struct Session {
    pub token: String,
    pub user_id: String,
    pub expires_at: i64,
}
```

#### VerificationToken

```rust
pub struct VerificationToken {
    pub token: String,
    pub email: String,
    pub expires_at: i64,
}
```

## Email Integration

AuthKit provides a flexible email integration system that allows you to use any email service (SendGrid, AWS SES, SMTP, etc.) for sending verification emails, password reset emails, and other authentication-related emails.

### Quick Start

#### Option 1: Manual Email Handling (Default)

By default, AuthKit generates tokens but doesn't send emails. You handle email sending:

```rust
let auth = Auth::builder()
    .database(Database::sqlite("auth.db").await?)
    .build()?;

let verification = auth.send_email_verification(SendEmailVerification {
    user_id: user.id,
}).await?;

// You send the email using your service
your_email_service::send(&verification.email, &verification.token).await?;
```

#### Option 2: Automatic Email Sending

Configure an `EmailSender` to send emails automatically:

```rust
use authkit::email::{EmailSender, EmailContext};
use async_trait::async_trait;

// Implement the EmailSender trait
struct MyEmailSender {
    api_key: String,
}

#[async_trait]
impl EmailSender for MyEmailSender {
    async fn send_verification_email(&self, context: EmailContext) -> Result<()> {
        let url = format!("https://myapp.com/verify?token={}", context.token);
        
        // Use your email service (SendGrid, AWS SES, SMTP, etc.)
        sendgrid::send(
            &self.api_key,
            &context.email,
            "Verify your email",
            &format!("Click here: {}", url),
        ).await?;
        
        Ok(())
    }
}

// Configure Auth with your email sender
let auth = Auth::builder()
    .database(Database::sqlite("auth.db").await?)
    .email_sender(Box::new(MyEmailSender {
        api_key: "your_api_key".to_string(),
    }))
    .build()?;

// Now emails are sent automatically
auth.send_email_verification(SendEmailVerification {
    user_id: user.id,
}).await?;
```

### EmailSender Trait

```rust
#[async_trait]
pub trait EmailSender: Send + Sync {
    async fn send_verification_email(&self, context: EmailContext) -> Result<()>;
}

pub struct EmailContext {
    pub email: String,      // Recipient's email
    pub token: String,      // Verification token (plaintext)
    pub expires_at: i64,    // Unix timestamp
}
```

### Example Implementations

#### Console Logger (Development)

```rust
struct ConsoleEmailSender {
    base_url: String,
}

#[async_trait]
impl EmailSender for ConsoleEmailSender {
    async fn send_verification_email(&self, context: EmailContext) -> Result<()> {
        println!("πŸ“§ Verify at: {}/verify?token={}", self.base_url, context.token);
        Ok(())
    }
}
```

#### SendGrid (Production)

```rust
struct SendGridEmailSender {
    api_key: String,
    from_email: String,
    base_url: String,
}

#[async_trait]
impl EmailSender for SendGridEmailSender {
    async fn send_verification_email(&self, context: EmailContext) -> Result<()> {
        let url = format!("{}/verify?token={}", self.base_url, context.token);
        
        let client = reqwest::Client::new();
        client
            .post("https://api.sendgrid.com/v3/mail/send")
            .header("Authorization", format!("Bearer {}", self.api_key))
            .json(&serde_json::json!({
                "personalizations": [{"to": [{"email": context.email}]}],
                "from": {"email": self.from_email},
                "subject": "Verify your email",
                "content": [{
                    "type": "text/html",
                    "value": format!("<a href='{}'>Verify Email</a>", url)
                }]
            }))
            .send()
            .await?;
        
        Ok(())
    }
}
```

### Environment-Based Configuration

```rust
fn create_email_sender(env: &str) -> Box<dyn EmailSender> {
    match env {
        "production" => Box::new(SendGridEmailSender { /* ... */ }),
        "development" => Box::new(ConsoleEmailSender { /* ... */ }),
        _ => panic!("Unknown environment"),
    }
}

let auth = Auth::builder()
    .database(database)
    .email_sender(create_email_sender(&env))
    .build()?;
```

**For detailed email integration guide, see [docs/EMAIL_INTEGRATION.md](docs/EMAIL_INTEGRATION.md).**

## Security

### Default Security Features

| Feature | Default |
|---------|---------|
| Password hashing | Argon2id |
| Timing-safe compares | βœ… Enabled |
| Session expiration | βœ… Enabled (24 hours) |
| Token entropy | High (cryptographically secure) |
| Password reuse | 🚫 Prevented |
| Weak passwords | 🚫 Rejected |

### Password Requirements

- Minimum length: 8 characters
- Must contain at least one uppercase letter
- Must contain at least one lowercase letter
- Must contain at least one number
- Must contain at least one special character

### Email Validation

- RFC 5322 compliant email validation
- Checks for valid format and structure

## Advanced Configuration

### Custom Password Strategy

```rust
use authkit::prelude::*;
use authkit::strategies::password::PasswordStrategyType;

let auth = Auth::builder()
    .database(Database::sqlite("auth.db").await?)
    .password_strategy(PasswordStrategyType::Argon2)
    .build()?;
```

### Custom Session Strategy

```rust
use authkit::prelude::*;
use authkit::strategies::session::SessionStrategyType;

let auth = Auth::builder()
    .database(Database::sqlite("auth.db").await?)
    .session_strategy(SessionStrategyType::Database)
    .build()?;
```

## Error Handling

AuthKit provides a comprehensive error type:

```rust
use authkit::prelude::*;

match auth.login(login_request).await {
    Ok(session) => println!("Login successful"),
    Err(AuthError::InvalidCredentials) => println!("Wrong email or password"),
    Err(AuthError::UserNotFound) => println!("User doesn't exist"),
    Err(e) => println!("Error: {}", e),
}
```

## Examples

Check the `examples/` directory for more usage examples:

- `email_verification.rs` - Complete email verification workflow
- `email_sender.rs` - Custom email sender implementations (SendGrid, AWS SES, SMTP, etc.)
- `basic.rs` - Simple registration and login flow (planned)
- `web_server.rs` - Integration with Axum (planned)
- `cli_tool.rs` - CLI authentication example (planned)

Run an example:

```bash
cargo run --example email_verification --features sqlite
cargo run --example email_sender --features sqlite
```

## Testing

Run the test suite:

```bash
cargo test
```

Run tests with all features:

```bash
cargo test --all-features
```

## Roadmap

### Current Status: Foundation Phase βœ…

**Implemented:**
- βœ… Core Auth API
- βœ… Builder pattern
- βœ… SQLite backend
- βœ… PostgreSQL backend
- βœ… Argon2 password hashing
- βœ… Database sessions
- βœ… Email validation
- βœ… Password validation
- βœ… Token system (database-backed)
- βœ… Email verification flow (send, verify, resend)

**Planned:**
- πŸ”œ JWT sessions
- πŸ”œ Refresh tokens
- πŸ”œ Password reset flow
- πŸ”œ Magic link authentication
- πŸ”œ Axum adapter
- πŸ”œ Actix adapter
- πŸ”œ Rate limiting
- πŸ”œ Audit logging
- πŸ”œ OAuth integration
- πŸ”œ Two-factor authentication

## Contributing

Contributions are welcome! Please read our [contribution guidelines](AGENTS.md) first.

### For Contributors (Including AI Agents)

When contributing to AuthKit, you **MUST**:

- βœ… Preserve the single-entry-point design
- βœ… Avoid exposing generics or traits publicly
- βœ… Keep framework dependencies out of core
- βœ… Prefer composition over configuration
- βœ… Default to secure behavior

You **MUST NOT**:

- ❌ Add framework-specific logic to core
- ❌ Leak SQLx types into the public API
- ❌ Introduce global state
- ❌ Require users to wire repositories manually

**If a change makes the API feel less like better-auth, it's probably wrong.**

## License

This project is dual-licensed under your choice of:

- MIT License ([LICENSE-MIT]LICENSE-MIT)
- Apache License, Version 2.0 ([LICENSE-APACHE]LICENSE-APACHE)

at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

## Acknowledgments

Inspired by [better-auth](https://github.com/better-auth/better-auth) - an excellent authentication library for JavaScript/TypeScript.


## Support

- πŸ“– [Documentation]https://docs.rs/authkit
- πŸ› [Issue Tracker]https://github.com/Akshay2642005/authkit/issues
- πŸ’¬ [Discussions]https://github.com/Akshay2642005/authkit/discussions

---

**Built with ❀️ by [Akshay B](mailto:akshay2642005@gmail.com)**