mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-11-29 16:43:17 +00:00
12 lines
128 B
Go
12 lines
128 B
Go
//go:build windows
|
|
|
|
package http
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Run(g *gin.Engine, addr string) {
|
|
g.Run(addr)
|
|
}
|