shop.tonybtw.com
https://git.tonybtw.com/shop.tonybtw.com.git
git://git.tonybtw.com/shop.tonybtw.com.git
package views
import (
"encoding/json"
"fmt"
)
func Format_Price(cents int) string {
dollars := float64(cents) / 100.0
return fmt.Sprintf("$%.2f", dollars)
}
func to_json(v any) string {
b, _ := json.Marshal(v)
return string(b)
templ Dummy() {