2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-25 05:05:46 +00:00

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)
}