mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 02:41:39 +00:00
21 lines
624 B
Dart
21 lines
624 B
Dart
import '../../../../../model/source.dart';
|
|
|
|
const _nyaaVersion = "0.0.25";
|
|
const _nyaaSourceCodeUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/nyaa/nyaa.dart";
|
|
|
|
String _iconUrl =
|
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/all/nyaa/icon.png";
|
|
|
|
Source get nyaaSource => _nyaaSource;
|
|
Source _nyaaSource = Source(
|
|
name: 'Nyaa',
|
|
baseUrl: "https://nyaa.si",
|
|
lang: "all",
|
|
typeSource: "torrent",
|
|
iconUrl: _iconUrl,
|
|
version: _nyaaVersion,
|
|
itemType: ItemType.anime,
|
|
sourceCodeUrl: _nyaaSourceCodeUrl,
|
|
);
|