Sélectionner une révision Git
transport.go
-
Alexandre Morignot a rédigéAlexandre Morignot a rédigé
transport.go 137 o
package transport
import (
"log"
)
type Transport interface {
Run() error
}
type Base struct {
Name string
Logger *log.Logger
}