1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-17 04:30:03 +02:00
thalos/transport/driver.go
2022-11-28 15:22:39 +01:00

9 lines
131 B
Go

package transport
type Driver interface
{
Send(namespace string, id uint32, message interface{}) error
Commit() error
}