From c2b7dfcb186f1e93c1d99cbc4e1357bb4adbc965 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Wed, 12 Mar 2025 12:54:13 +0000 Subject: [PATCH] rename registry functions --- gignore.go | 4 ++-- internal/registry/registry.go | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gignore.go b/gignore.go index 7540137..8d10856 100644 --- a/gignore.go +++ b/gignore.go @@ -32,7 +32,7 @@ func New(options ...Option) *Client { // List returns a list of available .gitignore templates. func (c *Client) List() ([]string, error) { - return c.registry.ListTemplates() + return c.registry.List() } // Create generates a .gitignore file from the specified template. @@ -60,7 +60,7 @@ func (c *Client) Create(template string) error { log.Infof("template '%s' found in default gitignoreio registry", template) } - content, err := c.registry.GetTemplate(template) + content, err := c.registry.Get(template) if err != nil { return err } diff --git a/internal/registry/registry.go b/internal/registry/registry.go index 5bdef32..c4403a1 100644 --- a/internal/registry/registry.go +++ b/internal/registry/registry.go @@ -41,8 +41,8 @@ func (t *TemplateRegistry) Contains(name string) (bool, error) { return true, nil } -// GetTemplate retrieves the content of the gitignore template with the given name. -func (t *TemplateRegistry) GetTemplate(name string) ([]byte, error) { +// Get retrieves the content of the gitignore template with the given name. +func (t *TemplateRegistry) Get(name string) ([]byte, error) { data, err := fs.ReadFile(t.templates, t.filePath(name)) if err != nil { return nil, err @@ -50,8 +50,8 @@ func (t *TemplateRegistry) GetTemplate(name string) ([]byte, error) { return data, nil } -// ListTemplates lists all the gitignore templates in the registry. -func (t *TemplateRegistry) ListTemplates() ([]string, error) { +// List lists all the gitignore templates in the registry. +func (t *TemplateRegistry) List() ([]string, error) { var paths []string err := fs.WalkDir(