MCPcopy Index your code
hub / github.com/apache/devlake / CsvStore

Struct CsvStore

backend/plugins/gitextractor/store/csv.go:79–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77}
78
79type CsvStore struct {
80 dir string
81 repoCommitWriter *csvWriter
82 commitWriter *csvWriter
83 refWriter *csvWriter
84 commitFileWriter *csvWriter
85 commitParentWriter *csvWriter
86 commitFileComponentWriter *csvWriter
87 commitLineChangeWriter *csvWriter
88 snapshotWriter *csvWriter
89}
90
91func NewCsvStore(dir string) (*CsvStore, errors.Error) {
92 if _, err := os.Stat(dir); os.IsNotExist(err) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected