Versions in this module Expand all Collapse all v0 v0.1.1 Jun 27, 2024 Changes in this version + type Conn struct + func New(path string) (*Conn, error) + func (c *Conn) Close() error + func (c *Conn) GetSurahById(id int) (*Surah, error) + func (c *Conn) GetSurahByName(name string) (*Surah, error) + func (c *Conn) GetSurahByNameLike(name string) (*Surah, error) + func (c *Conn) InitFromFile(file string) error + func (c *Conn) InitFromReader(r io.Reader) error + type Surah struct + Id int + Name string + TotalVerses int + Translation string + Transliteration string + Type string + Verses []Verse + type Verse struct + Id int + Text string + Translation string