diff options
| author | Samuel Johnson <[email protected]> | 2025-12-11 15:09:30 -0500 |
|---|---|---|
| committer | Samuel Johnson <[email protected]> | 2025-12-11 15:09:30 -0500 |
| commit | 61ba5dcc29a16bb3727209a76ee75fffff037dee (patch) | |
| tree | 4505ebfe8aadeae024e2f36fb948f9e79841a0f1 /internal/models/comment.go | |
| parent | 154e2a5417bca37cd7474f4e16fd8901844e473f (diff) | |
Add commenting system
Diffstat (limited to 'internal/models/comment.go')
| -rw-r--r-- | internal/models/comment.go | 12 |
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 +} |
