goshorly/db/Get.go

6 lines
95 B
Go
Raw Normal View History

2022-01-13 19:06:30 +00:00
package db
func Get(input string) (string, error) {
return Client.Get(ctx, input).Result()
}