mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
```bash for file in `cat diffys`; do printf '%s\n%s\n' "// Copyright 2021 Molecula Corp. All rights reserved." "$(cat $file)" >$file; done ```
11 lines
208 B
Go
11 lines
208 B
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
package test
|
|
|
|
import (
|
|
"github.com/molecula/featurebase/v2"
|
|
)
|
|
|
|
// Field represents a test wrapper for pilosa.Field.
|
|
type Field struct {
|
|
*pilosa.Field
|
|
}
|