feat: set path as ID if it's empty

This commit is contained in:
Noah Hsu
2022-06-16 20:25:33 +08:00
parent 56c95eadea
commit 52ab1310be
3 changed files with 16 additions and 2 deletions

View File

@ -26,3 +26,7 @@ type URL interface {
type Thumbnail interface {
Thumbnail() string
}
type SetID interface {
SetID(id string)
}