feudal/message/router.go
Matthew Rich c545200ade
Some checks failed
Lint / golangci-lint (push) Failing after 9m57s
Declarative Tests / test (push) Failing after 10s
add initial commit
2024-04-04 12:43:46 -07:00

8 lines
147 B
Go

// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package message
type Router interface {
Route(m Envelope)
}