aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-12 12:14:40 +0000
committerFuwn <[email protected]>2024-10-12 12:14:40 +0000
commit3ab40ae65d242d957a6fcaeba19c58dc40baaff0 (patch)
tree7c3788d4852b60ecea15384d36875ceca4f90149
parentrefactor(source): move tag fetcher to members (diff)
downloadyae-3ab40ae65d242d957a6fcaeba19c58dc40baaff0.tar.xz
yae-3ab40ae65d242d957a6fcaeba19c58dc40baaff0.zip
refactor(sources): remove unused member
-rw-r--r--sources.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/sources.go b/sources.go
index a9625a3..d092edd 100644
--- a/sources.go
+++ b/sources.go
@@ -8,10 +8,6 @@ import (
type Sources map[string]Source
-func (s *Sources) EnsureLoaded() error {
- return nil
-}
-
func (s *Sources) Add(name string, d Source) error {
if s.Exists(name) {
return fmt.Errorf("source already exists")