Initial commit
This commit is contained in:
commit
c0cb826917
63 changed files with 2069 additions and 0 deletions
13
internal/application/common/posts_result.go
Normal file
13
internal/application/common/posts_result.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
package common
|
||||
|
||||
import "github.com/google/uuid"
|
||||
|
||||
type PostsResult struct {
|
||||
Id uuid.UUID
|
||||
UserId uuid.UUID
|
||||
PostId uuid.UUID
|
||||
}
|
||||
|
||||
type PostsResultList struct {
|
||||
Result []*PostsResult
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue