generated from VLADIMIR/template
add story service
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user