Skip to content

Provider

Vadim edited this page Jun 24, 2023 · 2 revisions

Structure

---> 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

Info

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 (without v prefix)
  • website - Website related to the provider
Clone this wiki locally