New source Aniwave (EN)

This commit is contained in:
kodjomoustapha
2023-11-17 18:56:08 +01:00
parent cc3a077c4e
commit f4703303f4
8 changed files with 272 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
import '../../../../model/source.dart';
import '../../../../utils/utils.dart';
Source get aniwave => _aniwave;
const aniwaveVersion = "0.0.1";
const aniwaveCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/en/aniwave/aniwave-v$aniwaveVersion.dart";
Source _aniwave = Source(
name: "Aniwave",
baseUrl: "https://aniwave.to",
lang: "en",
typeSource: "single",
iconUrl: getIconUrl("aniwave", "en"),
sourceCodeUrl: aniwaveCodeUrl,
version: aniwaveVersion,
appMinVerReq: "0.0.8",
isManga: false);