blob: 532253530c6e87750b83b19cacd158bdb4332ae5 [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 discovery
import (
"io/v/syncslides/db"
)
type PresentationInfo struct {
Person db.VPerson
DeckId string
Deck db.VDeck
SyncgroupName string
}
type LivePresentation interface {
GetInfo() (PresentationInfo | error)
}