add story service

This commit is contained in:
2026-03-07 04:34:58 +07:00
parent 9e0a19d25a
commit 645f6a7246
5 changed files with 80 additions and 46 deletions
@@ -0,0 +1,10 @@
package story_service
import (
"context"
)
type IStoryStorage interface {
Load(ctx context.Context) (*Story, error)
Save(ctx context.Context, story *Story) error
}