mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
29 lines
914 B
Dart
29 lines
914 B
Dart
import '../../../model/source.dart';
|
|
import '../../../utils/utils.dart';
|
|
|
|
const zorothemeVersion = "0.0.55";
|
|
const zorothemeSourceCodeUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/multisrc/zorotheme/zorotheme-v$zorothemeVersion.dart";
|
|
|
|
List<Source> get zorothemeSourcesList => _zorothemeSourcesList;
|
|
List<Source> _zorothemeSourcesList = [
|
|
Source(
|
|
name: "AniWatch.to",
|
|
baseUrl: "https://aniwatch.to",
|
|
lang: "en",
|
|
typeSource: "zorotheme",
|
|
iconUrl: getIconUrl("aniwatch", "en"),
|
|
version: zorothemeVersion,
|
|
isManga: false,
|
|
sourceCodeUrl: zorothemeSourceCodeUrl),
|
|
Source(
|
|
name: "Kaido.to",
|
|
baseUrl: "https://kaido.to",
|
|
lang: "en",
|
|
typeSource: "zorotheme",
|
|
iconUrl: getIconUrl("kaido", "en"),
|
|
version: zorothemeVersion,
|
|
isManga: false,
|
|
sourceCodeUrl: zorothemeSourceCodeUrl),
|
|
];
|