This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
octea/events/events.go
jolheiser ac4f5d71c8
initial commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2022-12-13 23:57:52 -06:00

12 lines
222 B
Go

package events
import "github.com/google/go-github/v48/github"
type handlerError struct {
Code int
Message string
}
type handler func(client *github.Client, event any) *handlerError
var Events map[string][]handler