You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonic/handler/content/wp/init.go

13 lines
172 B
Go

package wp
import "github.com/go-sonic/sonic/injection"
func init() {
injection.Provide(
NewPostHandler,
NewUserHandler,
NewCategoryHandler,
NewTagHandler,
)
}