container: implement SignedDataSource on GetRequest message
This commit is contained in:
parent
eedb97d135
commit
a41f22782b
4 changed files with 67 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue