init llm generated microblog submodule
This commit is contained in:
parent
1c7341499a
commit
216ace7afa
5 changed files with 241 additions and 1 deletions
15
internal/microblog/handler.go
Normal file
15
internal/microblog/handler.go
Normal 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue