17 lines
248 B
Go
17 lines
248 B
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ekzyis/echo-htmx-templ-tailwindcss/db"
|
|
)
|
|
|
|
type Context struct {
|
|
context.Context
|
|
Env string
|
|
PublicURL string
|
|
CommitShortSha string
|
|
CommitLongSha string
|
|
Db *db.Db
|
|
}
|