refactor(blogo,fs): move fs code to it's own package

This commit is contained in:
Guz
2025-01-22 18:48:53 -03:00
parent 65d7f542bc
commit 3e17b2339d
2 changed files with 4 additions and 2 deletions

View File

@@ -13,12 +13,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package blogo
package fs
import (
"io/fs"
)
var ErrNotExist = fs.ErrNotExist
type FS interface {
Metadata() Metadata
Open(name string) (File, error)

View File

@@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
package blogo
package fs
import "errors"