uplink/app/server.go

12 lines
165 B
Go
Raw Normal View History

2018-04-10 14:34:30 +00:00
package app
import (
"git.icedream.tech/icedream/uplink/app/channels"
"github.com/gin-gonic/gin"
)
type Server struct {
*gin.Engine
*channels.ChannelManager
}