mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-08 08:10:05 +08:00
10 lines
109 B
Go
10 lines
109 B
Go
|
package kv
|
||
|
|
||
|
import (
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func Key(indexes ...string) string {
|
||
|
return strings.Join(indexes, ":")
|
||
|
}
|