add gemlog

This commit is contained in:
Travis Shears 2025-10-05 17:01:13 +02:00
parent 93cdcef885
commit 5c94a3820a
10 changed files with 145 additions and 30 deletions

View file

@ -0,0 +1,15 @@
package gemlog
import (
gemini "github.com/kulak/gemini"
)
// Handler interface for microblog functionality
type Handler interface {
HandleRequest(w gemini.ResponseWriter, req *gemini.Request)
}
// NewHandler creates a new microblog handler
func NewHandler() Handler {
return NewGemlog()
}