add favicon example (#1001)
This commit is contained in:
		
							
								
								
									
										
											BIN
										
									
								
								examples/favicon/favicon.ico
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								examples/favicon/favicon.ico
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 1.1 KiB  | 
							
								
								
									
										15
									
								
								examples/favicon/main.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								examples/favicon/main.go
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,15 @@
 | 
			
		||||
package main
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"github.com/gin-gonic/gin"
 | 
			
		||||
	"github.com/thinkerou/favicon"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func main() {
 | 
			
		||||
	app := gin.Default()
 | 
			
		||||
	app.Use(favicon.New("./favicon.ico"))
 | 
			
		||||
	app.GET("/ping", func(c *gin.Context) {
 | 
			
		||||
		c.String(200, "Hello favicon.")
 | 
			
		||||
	})
 | 
			
		||||
	app.Run(":8080")
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user