mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-14 19:56:33 +08:00
9 lines
109 B
Go
9 lines
109 B
Go
package kv
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func Key(indexes ...string) string {
|
|
return strings.Join(indexes, ":")
|
|
}
|