mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 21:50:03 +05:30
12 lines
242 B
Go
12 lines
242 B
Go
package files
|
|
|
|
import "elyby/minecraft-skinsystem/model"
|
|
|
|
type FilesystemCapesFactory struct {
|
|
StoragePath string
|
|
}
|
|
|
|
func (cfg *FilesystemCapesFactory) Create() (model.CapesRepository, error) {
|
|
return &filesDb{path: cfg.StoragePath}, nil
|
|
}
|