mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 02:31:47 +00:00
50933aa328
closes: #6128
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)
|
|
}
|