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