add several environment for posts and update dependencies
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package dev.inmo.postssystem.features.posts.server
|
||||
|
||||
import dev.inmo.micro_utils.repos.CRUDRepo
|
||||
import dev.inmo.postssystem.features.posts.common.*
|
||||
|
||||
interface ServerPostsStorage : ServerReadPostsStorage, ServerWritePostsStorage, CRUDRepo<RegisteredPost, PostId, NewPost>
|
@@ -0,0 +1,7 @@
|
||||
package dev.inmo.postssystem.features.posts.server
|
||||
|
||||
import dev.inmo.micro_utils.repos.ReadCRUDRepo
|
||||
import dev.inmo.postssystem.features.posts.common.PostId
|
||||
import dev.inmo.postssystem.features.posts.common.RegisteredPost
|
||||
|
||||
interface ServerReadPostsStorage : ReadCRUDRepo<RegisteredPost, PostId>
|
@@ -0,0 +1,6 @@
|
||||
package dev.inmo.postssystem.features.posts.server
|
||||
|
||||
import dev.inmo.micro_utils.repos.WriteCRUDRepo
|
||||
import dev.inmo.postssystem.features.posts.common.*
|
||||
|
||||
interface ServerWritePostsStorage : WriteCRUDRepo<RegisteredPost, PostId, NewPost>
|
Reference in New Issue
Block a user