new release management

This commit is contained in:
2026-01-27 20:01:25 +01:00
parent 27960741a3
commit ea78a83d78
11 changed files with 176 additions and 371 deletions
+19
View File
@@ -0,0 +1,19 @@
package domain
type FileServiceInterface interface {
GetPath(path string) string
}
type FileService struct {
FileRepository FileRepositoryInterface
}
func NewFileService() *FileService {
return &FileService{
FileRepository: NewFileRepository(),
}
}
func (s *FileService) GetPath(path string) string {
return s.FileRepository.GetPath(path)
}