8 lines
105 B
Go
8 lines
105 B
Go
package Comments
|
|
|
|
type Comments struct {
|
|
authorId string
|
|
text string
|
|
likes int
|
|
dislikes int
|
|
}
|