blob: 39f30a5eb62857aa55dad995ec8194f0d4a9d417 [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package distro
type State string
type Distro interface {
// Right now, the server->client any stream is used as a glorified completion signal.
Cast() stream<State, any> error
GetDescription() (string | error)
}