package repository import ( "context" ) type DifferentRepository struct { } func NewDifferentRepository() *DifferentRepository { return &DifferentRepository{} } func (r *DifferentRepository) Getlisttags(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Updatelisttags(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Webhookcreate(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Webhookdelete(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Getlistcustom(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Updatelistcustom(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Getlistpipelines(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Updatelistpipelines(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Getliststeps(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Updateliststeps(ctx context.Context) error { //TODO:IMPLEMENT ME return nil }