mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 02:41:39 +00:00
17 lines
658 B
Dart
17 lines
658 B
Dart
import '../../../../../model/source.dart';
|
|
|
|
Source get dramacoolSource => _dramacoolSource;
|
|
const _dramacoolVersion = "0.0.25";
|
|
const _dramacoolSourceCodeUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/dramacool/dramacool.dart";
|
|
Source _dramacoolSource = Source(
|
|
name: "DramaCool",
|
|
baseUrl: "https://dramacool.pa",
|
|
lang: "en",
|
|
typeSource: "single",
|
|
iconUrl:
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/en/dramacool/icon.png",
|
|
sourceCodeUrl: _dramacoolSourceCodeUrl,
|
|
version: _dramacoolVersion,
|
|
isManga: false);
|