fix formatting

This commit is contained in:
jay brown
2025-04-08 16:35:13 -07:00
parent dd9c53df04
commit c1a17d89bf
+12 -9
View File
@@ -1,10 +1,13 @@
# Cognitoauth structure
cognitoauth/
├── auth.go # Main package file with exported functions
├── handler.go # HTTP handlers for login, callback, etc.
├── middleware.go # Echo middleware implementation
├── jwks.go # JWKS handling and validation
├── token.go # Token verification and management
├── models.go # Data models and types
├── utils.go # Helper functions
└── config.go # Configuration structures
| File | Description |
|------|-------------|
| `auth.go` | Main package file with exported functions |
| `handler.go` | HTTP handlers for login, callback, etc. |
| `middleware.go` | Echo middleware implementation |
| `jwks.go` | JWKS handling and validation |
| `token.go` | Token verification and management |
| `models.go` | Data models and types |
| `utils.go` | Helper functions |
| `config.go` | Configuration structures |