16 lines
238 B
Go
16 lines
238 B
Go
package file
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/micro/go-micro/config/encoder"
|
|
)
|
|
|
|
func format(p string, e encoder.Encoder) string {
|
|
parts := strings.Split(p, ".")
|
|
if len(parts) > 1 {
|
|
return parts[len(parts)-1]
|
|
}
|
|
return e.String()
|
|
}
|