I'm settling on the idea that strings should never be returned from the userfile system. Instead, indicate which collection you want and pass objects across.
13 lines
271 B
Go
13 lines
271 B
Go
package csv
|
|
|
|
import (
|
|
//"encoding/csv"
|
|
//"github.com/Gleipnir-Technology/nidus-sync/platform/csv"
|
|
//"github.com/Gleipnir-Technology/nidus-sync/userfile"
|
|
//"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func ProcessJob(file_id int32) error {
|
|
//userfile.NewFileReader("csv"
|
|
return nil
|
|
}
|