mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
18 lines
316 B
Go
18 lines
316 B
Go
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
|
|
}
|