blob: 2c1465d2a7943f162341311986c4d8911ed55b0e [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, _> error
GetDescription() (string | error)
}