goshorly/db/Get.go

6 lines
103 B
Go
Raw Normal View History

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