-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdata.go
More file actions
23 lines (21 loc) · 737 Bytes
/
data.go
File metadata and controls
23 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package main
// Replace with your data by using -ldflags like this:
//
// tinygo flash -target gobadge -ldflags="-X main.YourName=@myontwitter -X main.YourTitle1='Amazing human' -X main.YourTitle2='also kind'"
//
// See Makefile for more info.
var (
YourName, YourTitleA1, YourTitleA2, YourTitleB1, YourTitleB2 string
YourMarqueeTop, YourMarqueeMiddle, YourMarqueeBottom, YourQRText string
)
const (
DefaultName = "@TinyGolang"
DefaultTitleA1 = "Go Compiler"
DefaultTitleA2 = "Small Places"
DefaultMarqueeTop = "This badge"
DefaultMarqueeMiddle = "runs"
DefaultMarqueeBottom = "TINYGO"
DefaultQRText = "https://tinygo.org"
DefaultTitleB1 = "I like"
DefaultTitleB2 = "TINYGO"
)