blob: 260097743765d66ecf6c66aa15e58d5b3e094064 [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
type MomentWireData struct {
Author string
Caption string
CreationTime int64
}
type MomentIfc interface {
GetBasics() (MomentWireData | error)
GetThumbImage() ([]byte | error)
GetFullImage() ([]byte | error)
}