mirror of
https://git.maid.zone/stuff/soundcloak.git
synced 2026-01-03 17:39:38 +05:00
9 lines
194 B
Plaintext
9 lines
194 B
Plaintext
package templates
|
|
|
|
import "github.com/maid-zone/soundcloak/lib/sc"
|
|
|
|
templ SearchUsers(p *sc.Paginated[sc.User]) {
|
|
for _, user := range p.Collection {
|
|
<h1>{user.Username}</h1>
|
|
}
|
|
} |