ModFileDO

/**
* @brief DO class: A mod file.
*/

Primary key: oid: int

schema ModFileDO {
  @primary oid: int,
  path: string,
  name: string,
  go_version: string
}

ModFileDO::getGoVersion

/**
* @brief gets the go version of this element.
* @return string
*/
pub fn getGoVersion(self: ModFileDO) -> string;

ModFileDO::getName

/**
* @brief gets the name of this element.
* @return string
*/
pub fn getName(self: ModFileDO) -> string;

ModFileDO::__all__

Data constraint method.

pub fn __all__(db: GoDB) -> *ModFileDO;

ModFileDO::getPath

/**
* @brief gets the path of this element.
* @return string
*/
pub fn getPath(self: ModFileDO) -> string;