mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
34 lines
960 B
Dart
34 lines
960 B
Dart
import '../../../../../model/source.dart';
|
|
|
|
const _animeworldindiaVersion = "0.0.25";
|
|
const _animeworldindiaSourceCodeUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/animeworldindia/animeworldindia.dart";
|
|
|
|
String _iconUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/animeworldindia/icon.png";
|
|
|
|
List<String> _languages = [
|
|
"all",
|
|
"en",
|
|
"bn",
|
|
"hi",
|
|
"ja",
|
|
"ml",
|
|
"mr",
|
|
"ta",
|
|
"te",
|
|
];
|
|
|
|
List<Source> get animeworldindiaSourcesList => _animeworldindiaSourcesList;
|
|
List<Source> _animeworldindiaSourcesList = _languages
|
|
.map((e) => Source(
|
|
name: 'AnimeWorld India',
|
|
baseUrl: "https://anime-world.in",
|
|
lang: e,
|
|
typeSource: "multiple",
|
|
iconUrl: _iconUrl,
|
|
version: _animeworldindiaVersion,
|
|
isManga: false,
|
|
sourceCodeUrl: _animeworldindiaSourceCodeUrl))
|
|
.toList();
|