Continued scaffolding and interface definitions

This commit is contained in:
2025-10-12 02:20:20 +08:00
parent 2e5fd96014
commit c3e0eba4b1
18 changed files with 164 additions and 15 deletions

View File

@@ -5,10 +5,10 @@ import (
"gitlab.michelsen.id/phillmichelsen/tessera/services/data_service/internal/domain"
)
type In interface {
type Receiver interface {
Receive() (port string, message domain.Message, ok bool)
}
type Out interface {
type Sender interface {
Send(port string, message domain.Message) error
}