8 lines
122 B
Go
8 lines
122 B
Go
package commands
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type CreatePostsCommand struct {
|
|
PostId uuid.UUID
|
|
UserId uuid.UUID
|
|
}
|