mirror of
https://github.com/safing/portbase
synced 2025-09-04 11:40:23 +00:00
Finish renaming model package to record
This commit is contained in:
parent
d76bfd55dc
commit
7ad09b60c1
13 changed files with 13 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Safing/portbase/formats/dsd"
|
"github.com/Safing/portbase/formats/dsd"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
// Benchmark:
|
// Benchmark:
|
||||||
// BenchmarkAllocateBytes-8 2000000000 0.76 ns/op
|
// BenchmarkAllocateBytes-8 2000000000 0.76 ns/op
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
type course struct {
|
type course struct {
|
||||||
Created int64
|
Created int64
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import "time"
|
import "time"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
// Record provides an interface for uniformally handling database records.
|
// Record provides an interface for uniformally handling database records.
|
||||||
type Record interface {
|
type Record interface {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import "sync"
|
import "sync"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package model
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
|
Loading…
Add table
Reference in a new issue