This commit is contained in:
2026-02-20 17:38:15 +03:00
commit 9d7ef2a4d1
6 changed files with 356 additions and 0 deletions

15
monochrome/client.go Normal file
View File

@@ -0,0 +1,15 @@
package monochrome
type ClientConfig struct {
ApiURL string
}
type Client struct {
config ClientConfig
}
func NewClient(config ClientConfig) *Client {
return &Client{
config: config,
}
}