Documentation ¶
Index ¶
- type ExampleDaoImpl
- func (inst *ExampleDaoImpl) Find(id dxo.ExampleID) (*entity.Example, error)
- func (inst *ExampleDaoImpl) Insert(o *entity.Example) (*entity.Example, error)
- func (inst *ExampleDaoImpl) ListAll() ([]*entity.Example, error)
- func (inst *ExampleDaoImpl) Remove(id dxo.ExampleID) error
- func (inst *ExampleDaoImpl) Update(id dxo.ExampleID, o *entity.Example) (*entity.Example, error)
- type ExecutableDaoImpl
- func (inst *ExecutableDaoImpl) Find(id dxo.ExecutableID) (*entity.Executable, error)
- func (inst *ExecutableDaoImpl) FindByPath(path string) (*entity.Executable, error)
- func (inst *ExecutableDaoImpl) Insert(o *entity.Executable) (*entity.Executable, error)
- func (inst *ExecutableDaoImpl) ListAll() ([]*entity.Executable, error)
- func (inst *ExecutableDaoImpl) Remove(id dxo.ExecutableID) error
- func (inst *ExecutableDaoImpl) Update(id dxo.ExecutableID, o1 *entity.Executable) (*entity.Executable, error)
- type GormDBAgent
- type GormDBAgentImpl
- type IntentTemplateDaoImpl
- func (inst *IntentTemplateDaoImpl) Find(id dxo.IntentTemplateID) (*entity.IntentTemplate, error)
- func (inst *IntentTemplateDaoImpl) Insert(o *entity.IntentTemplate) (*entity.IntentTemplate, error)
- func (inst *IntentTemplateDaoImpl) ListAll() ([]*entity.IntentTemplate, error)
- func (inst *IntentTemplateDaoImpl) Remove(id dxo.IntentTemplateID) error
- func (inst *IntentTemplateDaoImpl) Update(id dxo.IntentTemplateID, o *entity.IntentTemplate) (*entity.IntentTemplate, error)
- type MediaDaoImpl
- func (inst *MediaDaoImpl) Find(id dxo.MediaID) (*entity.Media, error)
- func (inst *MediaDaoImpl) FindByPath(path string) (*entity.Media, error)
- func (inst *MediaDaoImpl) Insert(o *entity.Media) (*entity.Media, error)
- func (inst *MediaDaoImpl) ListAll() ([]*entity.Media, error)
- func (inst *MediaDaoImpl) Remove(id dxo.MediaID) error
- func (inst *MediaDaoImpl) Update(id dxo.MediaID, o *entity.Media) (*entity.Media, error)
- type ProjectDaoImpl
- func (inst *ProjectDaoImpl) Find(id dxo.ProjectID) (*entity.Project, error)
- func (inst *ProjectDaoImpl) FindByOwnerRepository(id dxo.LocalRepositoryID) ([]*entity.Project, error)
- func (inst *ProjectDaoImpl) Insert(o *entity.Project) (*entity.Project, error)
- func (inst *ProjectDaoImpl) ListAll() ([]*entity.Project, error)
- func (inst *ProjectDaoImpl) Remove(id dxo.ProjectID) error
- func (inst *ProjectDaoImpl) Update(id dxo.ProjectID, o *entity.Project) (*entity.Project, error)
- type RepositoryDaoImpl
- func (inst *RepositoryDaoImpl) Find(id dxo.LocalRepositoryID) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByDotGit(path string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByName(name string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByPath(path string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByUUID(uuid dxo.UUID) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) FindByWorkingDir(path string) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) Insert(o *entity.LocalRepository) (*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) ListAll() ([]*entity.LocalRepository, error)
- func (inst *RepositoryDaoImpl) Remove(id dxo.LocalRepositoryID) error
- func (inst *RepositoryDaoImpl) Update(id dxo.LocalRepositoryID, o1 *entity.LocalRepository) (*entity.LocalRepository, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ExampleDaoImpl ¶
type ExampleDaoImpl struct { markup.Component `id:"ExampleDAO"` Agent GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
ExampleDaoImpl ...
func (*ExampleDaoImpl) ListAll ¶
func (inst *ExampleDaoImpl) ListAll() ([]*entity.Example, error)
ListAll ...
type ExecutableDaoImpl ¶
type ExecutableDaoImpl struct { markup.Component `id:"ExecutableDAO"` Agent GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
ExecutableDaoImpl ...
func (*ExecutableDaoImpl) Find ¶
func (inst *ExecutableDaoImpl) Find(id dxo.ExecutableID) (*entity.Executable, error)
Find ...
func (*ExecutableDaoImpl) FindByPath ¶
func (inst *ExecutableDaoImpl) FindByPath(path string) (*entity.Executable, error)
FindByPath ...
func (*ExecutableDaoImpl) Insert ¶
func (inst *ExecutableDaoImpl) Insert(o *entity.Executable) (*entity.Executable, error)
Insert ...
func (*ExecutableDaoImpl) ListAll ¶
func (inst *ExecutableDaoImpl) ListAll() ([]*entity.Executable, error)
ListAll ...
func (*ExecutableDaoImpl) Remove ¶
func (inst *ExecutableDaoImpl) Remove(id dxo.ExecutableID) error
Remove ...
func (*ExecutableDaoImpl) Update ¶
func (inst *ExecutableDaoImpl) Update(id dxo.ExecutableID, o1 *entity.Executable) (*entity.Executable, error)
Update ...
type GormDBAgentImpl ¶
type GormDBAgentImpl struct { markup.Component `id:"GormDBAgent" class:"life"` Sources datasource.SourceManager `inject:"#starter-gorm-source-manager"` // contains filtered or unexported fields }
GormDBAgentImpl ...
func (*GormDBAgentImpl) GetLifeRegistration ¶
func (inst *GormDBAgentImpl) GetLifeRegistration() *application.LifeRegistration
GetLifeRegistration ...
type IntentTemplateDaoImpl ¶
type IntentTemplateDaoImpl struct { markup.Component `id:"IntentTemplateDAO"` Agent GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
IntentTemplateDaoImpl ...
func (*IntentTemplateDaoImpl) Find ¶
func (inst *IntentTemplateDaoImpl) Find(id dxo.IntentTemplateID) (*entity.IntentTemplate, error)
Find ...
func (*IntentTemplateDaoImpl) Insert ¶
func (inst *IntentTemplateDaoImpl) Insert(o *entity.IntentTemplate) (*entity.IntentTemplate, error)
Insert ...
func (*IntentTemplateDaoImpl) ListAll ¶
func (inst *IntentTemplateDaoImpl) ListAll() ([]*entity.IntentTemplate, error)
ListAll ...
func (*IntentTemplateDaoImpl) Remove ¶
func (inst *IntentTemplateDaoImpl) Remove(id dxo.IntentTemplateID) error
Remove ...
func (*IntentTemplateDaoImpl) Update ¶
func (inst *IntentTemplateDaoImpl) Update(id dxo.IntentTemplateID, o *entity.IntentTemplate) (*entity.IntentTemplate, error)
Update ...
type MediaDaoImpl ¶
type MediaDaoImpl struct { markup.Component `id:"MediaDAO"` Agent GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
MediaDaoImpl ...
func (*MediaDaoImpl) FindByPath ¶
func (inst *MediaDaoImpl) FindByPath(path string) (*entity.Media, error)
FindByPath ...
type ProjectDaoImpl ¶
type ProjectDaoImpl struct { markup.Component `id:"ProjectDAO"` Agent GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
ProjectDaoImpl ...
func (*ProjectDaoImpl) FindByOwnerRepository ¶
func (inst *ProjectDaoImpl) FindByOwnerRepository(id dxo.LocalRepositoryID) ([]*entity.Project, error)
type RepositoryDaoImpl ¶
type RepositoryDaoImpl struct { markup.Component `id:"LocalRepositoryDAO"` Agent GormDBAgent `inject:"#GormDBAgent"` UUIDGenService service.UUIDGenService `inject:"#UUIDGenService"` }
RepositoryDaoImpl ...
func (*RepositoryDaoImpl) Find ¶
func (inst *RepositoryDaoImpl) Find(id dxo.LocalRepositoryID) (*entity.LocalRepository, error)
Find ...
func (*RepositoryDaoImpl) FindByDotGit ¶
func (inst *RepositoryDaoImpl) FindByDotGit(path string) (*entity.LocalRepository, error)
FindByDotGit ...
func (*RepositoryDaoImpl) FindByName ¶
func (inst *RepositoryDaoImpl) FindByName(name string) (*entity.LocalRepository, error)
FindByName ...
func (*RepositoryDaoImpl) FindByPath ¶
func (inst *RepositoryDaoImpl) FindByPath(path string) (*entity.LocalRepository, error)
FindByPath ...
func (*RepositoryDaoImpl) FindByUUID ¶
func (inst *RepositoryDaoImpl) FindByUUID(uuid dxo.UUID) (*entity.LocalRepository, error)
FindByUUID ...
func (*RepositoryDaoImpl) FindByWorkingDir ¶
func (inst *RepositoryDaoImpl) FindByWorkingDir(path string) (*entity.LocalRepository, error)
FindByWorkingDir ...
func (*RepositoryDaoImpl) Insert ¶
func (inst *RepositoryDaoImpl) Insert(o *entity.LocalRepository) (*entity.LocalRepository, error)
Insert ...
func (*RepositoryDaoImpl) ListAll ¶
func (inst *RepositoryDaoImpl) ListAll() ([]*entity.LocalRepository, error)
ListAll ...
func (*RepositoryDaoImpl) Remove ¶
func (inst *RepositoryDaoImpl) Remove(id dxo.LocalRepositoryID) error
Remove ...
func (*RepositoryDaoImpl) Update ¶
func (inst *RepositoryDaoImpl) Update(id dxo.LocalRepositoryID, o1 *entity.LocalRepository) (*entity.LocalRepository, error)
Update ...
Click to show internal directories.
Click to hide internal directories.