minisocial.gno

0.69 Kb ยท 18 lines
 1package minisocial
 2
 3func Render(_ string) string {
 4	return `# MiniSocial
 5MiniSocial is a minimalistic social media platform made for example purposes. 
 6
 7There are two versions of this app:
 8- [V1](/r/docs/minisocial/v1) - handles simple post creation and stores posts in a slice
 9- [V2](/r/docs/minisocial/v2) - handles post creation, updating, and deletion, 
10and manages storage more efficiently with an AVL tree. V2 also utilizes different p/ packages to handle pagination, 
11easier Markdown formatting, etc.`
12
13}
14
15// Original work & inspiration here:
16// https://gno.land/r/leon/fosdem25/microposts
17// https://gno.land/r/moul/microposts
18// Find the full tutorial on the official gno.land docs at docs.gno.land