Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to combine router with Gin? #79

Open
TangMonk opened this issue Aug 4, 2019 · 2 comments
Open

How to combine router with Gin? #79

TangMonk opened this issue Aug 4, 2019 · 2 comments

Comments

@TangMonk
Copy link

TangMonk commented Aug 4, 2019

Cannot start Gin and statik as some http port

@semyon-dev
Copy link

@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)
	}

// ...
}

@zcvxcv
Copy link

zcvxcv commented Sep 14, 2020

@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
} 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants