5 lines
95 B
Go
5 lines
95 B
Go
package db
|
|
|
|
func Get(input string) (string, error) {
|
|
return Client.Get(ctx, input).Result()
|
|
}
|