2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-24 20:58:26 +00:00
Alexander 26bc564b38
Peer syncing toggle ()
* Peer syncing toggle

* bindata.go
2024-03-05 11:44:09 +01:00

10 lines
159 B
Go

package requests
type TogglePeerSyncingRequest struct {
Enabled bool `json:"enabled"`
}
func (a *TogglePeerSyncingRequest) Validate() error {
return nil
}