blob: d656207b9a00b03bd4d94f52833238a235c6a473 [file] [log] [blame]
// Copyright 2015 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 vdl
type Chat interface {
// SendMessage sends a message to a user.
SendMessage(text string) error {}
}