mirror of
https://github.com/pushbits/server.git
synced 2025-05-05 13:16:22 +02:00
10 lines
140 B
Go
10 lines
140 B
Go
package runner
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// Run starts the Gin engine.
|
|
func Run(engine *gin.Engine) {
|
|
engine.Run(":8080")
|
|
}
|