StoreBackEnd/pkg/utils/FileSender.go
2022-03-12 15:57:27 +01:00

11 lines
127 B
Go

package utils
import (
"bufio"
)
func SendFile(fileName string, fileSize int, writer *bufio.Writer) bool {
return false
}