mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 19:01:15 +00:00
17 lines
666 B
Dart
17 lines
666 B
Dart
import '../../../../model/source.dart';
|
|
|
|
Source get wcostreamSource => _wcostreamSource;
|
|
const wcostreamVersion = "0.0.11";
|
|
const wcostreamSourceCodeUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/src/en/wcostream/wcostream-v$wcostreamVersion.dart";
|
|
Source _wcostreamSource = Source(
|
|
name: "WCOStream",
|
|
baseUrl: "https://www.wcostream.org",
|
|
lang: "en",
|
|
typeSource: "single",
|
|
iconUrl: 'https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icon/mangayomi-en-wcostream.png',
|
|
sourceCodeUrl: wcostreamSourceCodeUrl,
|
|
version: wcostreamVersion,
|
|
isManga: false,
|
|
isFullData: false);
|