mirror of
https://github.com/foomo/gotsrpc.git
synced 2026-06-28 22:00:03 +00:00
10 lines
105 B
Go
10 lines
105 B
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Base interface {
|
|
GetFirstName(ctx context.Context) string
|
|
}
|