12 lines
200 B
Go
Raw Normal View History

2025-01-21 14:00:40 +01:00
package pages
import (
2025-02-25 17:01:59 +01:00
"git.urbach.dev/go/web"
"git.urbach.dev/web/urbach.dev/server/app"
2025-01-21 14:00:40 +01:00
)
func Post(ctx web.Context) error {
id := ctx.Request().Param("post")
return app.RenderPost(ctx, id)
}