mirror of
https://github.com/usual2970/certimate.git
synced 2025-08-06 17:31:47 +00:00
Add workflow execution process
This commit is contained in:
17
internal/repository/access.go
Normal file
17
internal/repository/access.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package repository
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/usual2970/certimate/internal/domain"
|
||||
)
|
||||
|
||||
type AccessRepository struct{}
|
||||
|
||||
func NewAccessRepository() *AccessRepository {
|
||||
return &AccessRepository{}
|
||||
}
|
||||
|
||||
func (a *AccessRepository) GetById(ctx context.Context, id string) (*domain.Access, error) {
|
||||
return nil, nil
|
||||
}
|
Reference in New Issue
Block a user