container: implement SignedDataSource on GetRequest message

This commit is contained in:
Leonard Lyubich 2020-05-11 15:05:03 +03:00
parent eedb97d135
commit a41f22782b
4 changed files with 67 additions and 0 deletions

View file

@ -138,3 +138,13 @@ func (m DeleteRequest) GetCID() CID {
func (m *DeleteRequest) SetCID(cid CID) {
m.CID = cid
}
// GetCID is a CID field getter.
func (m GetRequest) GetCID() CID {
return m.CID
}
// SetCID is a CID field setter.
func (m *GetRequest) SetCID(cid CID) {
m.CID = cid
}