-
Notifications
You must be signed in to change notification settings - Fork 1
Provider
Vadim edited this page Jun 24, 2023
·
2 revisions
---> name: Script name
---> description: Script description
---> version: v0.1.0
---> website: https://example.com
function SearchMangas(query)
return {}
end
function MangaVolumes(manga)
return {}
end
function VolumeChapters(volume)
return {}
end
function ChapterPages(chapter)
return {}
end
Each provider must contain the following lines:
---> name: Script name
---> description: Script description
---> version: v0.1.0
---> website: https://example.com
Basically, --->
indicates that this line contains script information field in YAML format.
-
name
- Name of the script -
description
- Description of the script -
version
- Script version. It must be a valid semver (withoutv
prefix) -
website
- Website related to the provider