go-dette/karma.go

10 lines
143 B
Go
Raw Normal View History

2023-01-24 23:17:30 +03:00
package main
// Returns slices of good and bad triggers
func GetTriggers() map[string]int {
return map[string]int{
"+": 1,
"-": -1,
}
2023-01-24 23:17:30 +03:00
}