rakyll/statik

How to combine router with Gin?

TangMonk opened this issue · 2 comments

Cannot start Gin and statik as some http port

@TangMonk try this:

import(
// ...
_ "github.com/your_github/your_project/statik" // replace with path to generated statik.go
)

func main() {

// ...

	app := gin.Default()

        statikFS, err := fs.New()
	if err != nil {
		fmt.Println(err.Error())
	} else {
		app.StaticFS("/docs", statikFS)
	}

// ...
}

@semyon-dev
__

@TangMonk try this:

import(
// ...
_ "github.com/your_github/your_project/statik" // replace with path to generated statik.go
)

func main() {

// ...

	app := gin.Default()

        statikFS, err := fs.New()
	if err != nil {
		fmt.Println(err.Error())
	} else {
		app.StaticFS("/docs", statikFS)
	}

// ...
}

Hi! How to combine router with Gin tmpl?
like this:

func Test(b *gin.Context) {
	ti := "test ok"
	b.HTML(200, "/tmpl/index.tmpl", gin.H{      // "/tmpl/index.tmpl "  What should be replaced?
		"title": ti,
	})
	return
}