Skip to content

Commit b14b602

Browse files
Merge pull request #1 from Programmer-RD-AI/feat/initial-project-structure
Inital File/Project Initalization
2 parents f457632 + 668f2d1 commit b14b602

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name := auth-forge
2+
version := 0.1.0
3+
4+
sync:
5+
go mod tidy
6+
7+
run:
8+
go run ./cmd/main.go

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# auth-forge
2+
23
A self-hosted, provider-agnostic authentication library offering email/password and anonymous login flows, JWT issuance & rotation, session management, and role-based access control (RBAC).

cmd/main.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package main
2+
3+
func main() {}

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/Programmer-RD-AI/auth-forge
2+
3+
go 1.24.4

0 commit comments

Comments
 (0)