👔 Created simple static use case interface

This commit is contained in:
Maxim Lebedev 2023-11-09 06:48:31 +06:00
parent f036ea127d
commit 378ec02778
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package static
import (
"context"
"source.toby3d.me/toby3d/home/internal/domain"
)
type UseCase interface {
Do(ctx context.Context, path string) (*domain.File, error)
}