aboutsummaryrefslogtreecommitdiff
path: root/internal/models
diff options
context:
space:
mode:
authorSamuel Johnson <[email protected]>2025-12-11 15:09:30 -0500
committerSamuel Johnson <[email protected]>2025-12-11 15:09:30 -0500
commit61ba5dcc29a16bb3727209a76ee75fffff037dee (patch)
tree4505ebfe8aadeae024e2f36fb948f9e79841a0f1 /internal/models
parent154e2a5417bca37cd7474f4e16fd8901844e473f (diff)
Add commenting system
Diffstat (limited to 'internal/models')
-rw-r--r--internal/models/comment.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/models/comment.go b/internal/models/comment.go
new file mode 100644
index 0000000..df27ca3
--- /dev/null
+++ b/internal/models/comment.go
@@ -0,0 +1,12 @@
+package models
+
+import "time"
+
+type Comment struct {
+ Id int
+ IsVerified bool
+ Time time.Time
+ FormattedTime string
+ Name string
+ Content string
+}