summaryrefslogtreecommitdiff
path: root/webircgateway/plugins/example/plugin.go
blob: 085d9e3cf8ede8705ce9a9a09544d1f1d29a0245 (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"sync"

	"github.com/kiwiirc/webircgateway/pkg/webircgateway"
)

func Start(gateway *webircgateway.Gateway, pluginsQuit *sync.WaitGroup) {
	gateway.Log(1, "Example gateway plugin %s", webircgateway.Version)
}