mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-14 02:33:03 +02:00
11 lines
151 B
Go
11 lines
151 B
Go
package file
|
|
|
|
import "strings"
|
|
|
|
func format(name string) string {
|
|
if p := strings.Split(name, "."); len(p) > 1 {
|
|
return p[len(p)-1]
|
|
}
|
|
return ""
|
|
}
|