Skip to content

Commit

Permalink
Merge pull request #431 from wyyadd/develop
Browse files Browse the repository at this point in the history
Export File System
  • Loading branch information
martijn00 authored Jul 31, 2024
2 parents 1757966 + 818051c commit c3fce5b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions flutter_cache_manager/lib/flutter_cache_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ export 'src/logger.dart';
export 'src/result/result.dart';
export 'src/storage/cache_info_repositories/cache_info_repositories.dart';
export 'src/storage/cache_object.dart';
export 'src/storage/file_system/file_system.dart';
export 'src/web/file_service.dart';
export 'src/web/web_helper.dart' show HttpExceptionWithStatus;
1 change: 0 additions & 1 deletion flutter_cache_manager/lib/src/cache_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import 'dart:io';

import 'package:flutter_cache_manager/flutter_cache_manager.dart';
import 'dart:io' as io;
import 'package:flutter_cache_manager/src/storage/file_system/file_system.dart';

///Flutter Cache Manager
///Copyright (c) 2019 Rene Floor
Expand Down
2 changes: 0 additions & 2 deletions flutter_cache_manager/lib/src/config/_config_io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import 'dart:io';

import 'package:flutter_cache_manager/flutter_cache_manager.dart';
import 'package:flutter_cache_manager/src/config/config.dart' as def;
import 'package:flutter_cache_manager/src/storage/file_system/file_system.dart';
import 'package:flutter_cache_manager/src/storage/file_system/file_system_io.dart';

class Config implements def.Config {
Config(
Expand Down
1 change: 0 additions & 1 deletion flutter_cache_manager/lib/src/config/_config_web.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'package:flutter_cache_manager/src/config/config.dart' as def;
import 'package:flutter_cache_manager/src/storage/cache_info_repositories/cache_info_repository.dart';
import 'package:flutter_cache_manager/src/storage/cache_info_repositories/non_storing_object_provider.dart';
import 'package:flutter_cache_manager/src/storage/file_system/file_system.dart';
import 'package:flutter_cache_manager/src/storage/file_system/file_system_web.dart';
import 'package:flutter_cache_manager/src/web/file_service.dart';

class Config implements def.Config {
Expand Down
1 change: 0 additions & 1 deletion flutter_cache_manager/lib/src/config/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'package:flutter_cache_manager/flutter_cache_manager.dart';
import 'package:flutter_cache_manager/src/config/_config_unsupported.dart'
if (dart.library.html) '_config_web.dart'
if (dart.library.io) '_config_io.dart' as impl;
import 'package:flutter_cache_manager/src/storage/file_system/file_system.dart';

abstract class Config {
/// Config file for the CacheManager.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
export 'file_system.dart';
export 'file_system_io.dart';
export 'file_system_web.dart';

import 'package:file/file.dart';

abstract class FileSystem {
Expand Down

0 comments on commit c3fce5b

Please sign in to comment.