blob: b3f0bdf3f80e3f0a107b9171598d877e2e0eccf0 [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 {
Cast() stream<State, State> error
GetDescription() (string | error)
}