Add GOTH stack CRM platform skeleton

- Go module with chi router, bcrypt
- SQLite schema for 9 tables
- Auth, Clients, Customers, Services, Scheduling, Payments, Q&A handlers
- HTMX template layouts
This commit is contained in:
2026-04-21 15:56:40 +00:00
parent 31039ea4af
commit 5b8107c169
14 changed files with 1529 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package handlers
import (
"database/sql"
"time"
)
func SetupHandlers(db *sql.DB) {
DB = db
}
func getCurrentTimestamp() int64 {
return time.Now().Unix()
}