mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-03 15:56:22 +00:00
31 lines
575 B
Go
31 lines
575 B
Go
package v1
|
|
|
|
import (
|
|
"context"
|
|
"github.com/cloudwego/hertz/pkg/app"
|
|
)
|
|
|
|
type labelType struct{}
|
|
|
|
var Label = new(labelType)
|
|
|
|
func (l *labelType) Create(ctx context.Context, c *app.RequestContext) {
|
|
// TODO: Impl
|
|
}
|
|
|
|
func (l *labelType) Delete(ctx context.Context, c *app.RequestContext) {
|
|
// TODO: Impl
|
|
}
|
|
|
|
func (l *labelType) Get(ctx context.Context, c *app.RequestContext) {
|
|
// TODO: Impl
|
|
}
|
|
|
|
func (l *labelType) Update(ctx context.Context, c *app.RequestContext) {
|
|
// TODO: Impl
|
|
}
|
|
|
|
func (l *labelType) List(ctx context.Context, c *app.RequestContext) {
|
|
// TODO: Impl
|
|
}
|