StoreBackEnd/pkg/utils/FileSender.go

11 lines
127 B
Go
Raw Normal View History

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