Files
music-dl/monochrome/client.go
2026-02-20 17:42:40 +03:00

16 lines
196 B
Go

package monochrome
type ClientConfig struct {
ApiURL string
}
type Client struct {
config ClientConfig
}
func NewClient(config ClientConfig) *Client {
return &Client{
config: config,
}
}