shop.tonybtw.com

shop.tonybtw.com

https://git.tonybtw.com/shop.tonybtw.com.git git://git.tonybtw.com/shop.tonybtw.com.git
258 bytes raw
1
package views
2
3
import (
4
	"encoding/json"
5
	"fmt"
6
)
7
8
func Format_Price(cents int) string {
9
	dollars := float64(cents) / 100.0
10
	return fmt.Sprintf("$%.2f", dollars)
11
}
12
13
func to_json(v any) string {
14
	b, _ := json.Marshal(v)
15
	return string(b)
16
}
17
18
templ Dummy() {
19
}