blob: 79aa94fe1daea617dd83a5fad97594bd98f97ab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//go:build api
package api
import (
"sts2stats/stats"
"sts2stats/storage"
)
func CardChoices() (any, error) {
return storage.Entities[*stats.CardChoice]("SELECT * FROM CardChoice")
}
|