mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-16 02:47: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 ""
|
||
|
}
|