chore: Simplify file structure
parent
a1cc611eff
commit
87117f2e9e
@ -1,12 +1,21 @@
|
||||
import 'package:funkblubber/funkentity.dart';
|
||||
import 'package:funkblubber/console.dart' as console;
|
||||
import 'package:funkblubber/parsing/parsing_stage.dart';
|
||||
|
||||
enum Action {
|
||||
download,
|
||||
upload,
|
||||
}
|
||||
|
||||
enum ParsingStage {
|
||||
nothing,
|
||||
album,
|
||||
artist,
|
||||
track,
|
||||
path,
|
||||
upload,
|
||||
domain,
|
||||
}
|
||||
|
||||
class StageResult {
|
||||
StageResult({required this.result, required this.stage});
|
||||
final ParseResult result;
|
@ -1,9 +0,0 @@
|
||||
enum ParsingStage {
|
||||
nothing,
|
||||
album,
|
||||
artist,
|
||||
track,
|
||||
path,
|
||||
upload,
|
||||
domain,
|
||||
}
|
Loading…
Reference in New Issue