-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Ascalon): create connector (#6661)
- Loading branch information
1 parent
c8b8b6f
commit e58ffa5
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import WordPressMangastream from './templates/WordPressMangastream.mjs'; | ||
|
||
export default class Ascalon extends WordPressMangastream { | ||
constructor() { | ||
super(); | ||
super.id = 'ascalon'; | ||
super.label = 'Ascalon'; | ||
this.tags = ['webtoon', 'english', 'scanlation']; | ||
this.url = 'https://ascalonscans.com'; | ||
this.path = '/manga/list-mode/'; | ||
} | ||
} |