mirror of
https://github.com/eosswedenorg/thalos
synced 2026-06-17 04:30:03 +02:00
9 lines
131 B
Go
9 lines
131 B
Go
|
|
package transport
|
|
|
|
type Driver interface
|
|
{
|
|
Send(namespace string, id uint32, message interface{}) error
|
|
|
|
Commit() error
|
|
}
|