This commit is contained in:
2026-02-20 17:38:15 +03:00
commit 7e988ef870
7 changed files with 392 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,
}
}