init llm generated microblog submodule

This commit is contained in:
Travis Shears 2025-09-26 22:25:59 +02:00
parent 1c7341499a
commit 216ace7afa
5 changed files with 241 additions and 1 deletions

View file

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