mirror of
https://github.com/keven1024/015.git
synced 2026-05-26 07:08:02 +00:00
8 lines
137 B
Go
8 lines
137 B
Go
package utils
|
|
|
|
import "fmt"
|
|
|
|
func GetFileId(fileHash string, fileSize int64) string {
|
|
return fmt.Sprintf("%s_%d", fileHash, fileSize)
|
|
}
|