mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
12 lines
248 B
Go
12 lines
248 B
Go
|
package requests
|
||
|
|
||
|
import "github.com/status-im/status-go/logutils"
|
||
|
|
||
|
type SetLogNamespaces struct {
|
||
|
LogNamespaces string `json:"logNamespaces"`
|
||
|
}
|
||
|
|
||
|
func (c *SetLogNamespaces) Validate() error {
|
||
|
return logutils.ValidateNamespaces(c.LogNamespaces)
|
||
|
}
|