More stuff

This commit is contained in:
2026-02-14 15:52:33 +01:00
parent 6b523e16a2
commit 9de1962f6b
4 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
/maj.h
*.so
*.key

5
Makefile Normal file
View File

@@ -0,0 +1,5 @@
MODULE := maj.so
$(MODULE): *.go
go build -v -o $@ -buildmode=c-shared .

5
go.mod Normal file
View File

@@ -0,0 +1,5 @@
module git.maze.io/maze/mosquitto-auth-jwt
go 1.24.13
require github.com/golang-jwt/jwt/v5 v5.3.1 // indirect

2
go.sum Normal file
View File

@@ -0,0 +1,2 @@
github.com/golang-jwt/jwt/v5 v5.3.1 h1:kYf81DTWFe7t+1VvL7eS+jKFVWaUnK9cB1qbwn63YCY=
github.com/golang-jwt/jwt/v5 v5.3.1/go.mod h1:fxCRLWMO43lRc8nhHWY6LGqRcf+1gQWArsqaEUEa5bE=