added .gitignore

This commit is contained in:
2025-09-13 17:26:31 -06:00
parent 8de70e5d07
commit d478461c93
2 changed files with 5 additions and 4 deletions
+4 -4
View File
@@ -24,14 +24,14 @@ type amContext struct {
httprc int
}
func (c *amContext) Render(name string) error {
return c.echoContext.Render(c.httprc, name, c)
}
func (c *amContext) SetRC(rc int) {
c.httprc = rc
}
func (c *amContext) Render(name string) error {
return c.echoContext.Render(c.httprc, name, c)
}
func NewAmContext(ctxt echo.Context) AmContext {
rc := amContext{
echoContext: ctxt,