diff options
Diffstat (limited to 'db/models.go')
-rw-r--r-- | db/models.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/db/models.go b/db/models.go new file mode 100644 index 0000000..83e4051 --- /dev/null +++ b/db/models.go @@ -0,0 +1,17 @@ +// Code generated by sqlc. DO NOT EDIT. +// versions: +// sqlc v1.26.0 + +package db + +import ( + "github.com/jackc/pgx/v5/pgtype" +) + +type Usage struct { + Hardwareaddr int32 + Starttime pgtype.Timestamp + Stoptime pgtype.Timestamp + Egress int32 + Ingress int32 +} |