mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
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
|
||
|
}
|