mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
26bc564b38
* Peer syncing toggle * bindata.go
10 lines
159 B
Go
10 lines
159 B
Go
package requests
|
|
|
|
type TogglePeerSyncingRequest struct {
|
|
Enabled bool `json:"enabled"`
|
|
}
|
|
|
|
func (a *TogglePeerSyncingRequest) Validate() error {
|
|
return nil
|
|
}
|