mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 19:01:15 +00:00
20 lines
589 B
Dart
20 lines
589 B
Dart
import '../../../model/source.dart';
|
|
import 'src/aniwatch/aniwatch.dart';
|
|
import 'src/kaido/kaido.dart';
|
|
|
|
const _zorothemeVersion = "0.0.7";
|
|
const _zorothemeSourceCodeUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/anime/multisrc/zorotheme/zorotheme.dart";
|
|
|
|
List<Source> get zorothemeSourcesList => _zorothemeSourcesList;
|
|
List<Source> _zorothemeSourcesList = [
|
|
//AniWatch.to (EN)
|
|
aniwatchSource,
|
|
//Kaido.to (EN)
|
|
kaidoSource,
|
|
]
|
|
.map((e) => e
|
|
..sourceCodeUrl = _zorothemeSourceCodeUrl
|
|
..version = _zorothemeVersion)
|
|
.toList();
|