Skip to content

Commit

Permalink
feat(SectScans,LunarScans): create connectors (#6301)
Browse files Browse the repository at this point in the history
* feat(SectScans,LunarScans): create connectors

* fix(LunarScans,SectScans): fixed requested minor changes

* fix(LunarScans,SectScans): lint errors
  • Loading branch information
z3nn13 authored and Sheepux committed Jan 2, 2024
1 parent 1fd19ed commit 42b7f61
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
Binary file added src/web/img/connectors/lunarscans
Binary file not shown.
Binary file added src/web/img/connectors/sectscans
Binary file not shown.
12 changes: 12 additions & 0 deletions src/web/mjs/connectors/LunarScans.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import WordPressMangastream from "./templates/WordPressMangastream.mjs";

export default class LunarScans extends WordPressMangastream {
constructor() {
super();
super.id = "lunarscans";
super.label = "Lunar Scans";
this.tags = ["webtoon", "english", "scanlation", "hentai"];
this.url = "https://lunarscan.org";
this.path = "/series/list-mode/";
}
}
11 changes: 11 additions & 0 deletions src/web/mjs/connectors/SectScans.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import WordPressMadara from "./templates/WordPressMadara.mjs";

export default class SectScans extends WordPressMadara {
constructor() {
super();
super.id = "sectscans";
super.label = "Sect Scans";
this.tags = ["manga", "english", "webtoon", "scanlation"];
this.url = "https://sectscans.com";
}
}

0 comments on commit 42b7f61

Please sign in to comment.