Skip to content

Installation as proxy plugin

Installing

Add the github.com/kasefuchs/lazygate module to your project:

go get github.com/kasefuchs/lazygate

Include the plugin in your list of proxy plugins:

package main

import (
    lazygate "github.com/kasefuchs/lazygate/pkg/plugin"
    "go.minekube.com/gate/cmd/gate"
    "go.minekube.com/gate/pkg/edition/java/proxy"
)

func main() {
    proxy.Plugins = append(proxy.Plugins, lazygate.NewProxyPlugin())

    gate.Execute()
}