Data foundation started, with updated guidelines and
golangci-lint config.
This commit is contained in:
2025-11-16 19:21:27 -08:00
parent 07a5e957af
commit c8a6830a80
9 changed files with 788 additions and 149 deletions

14
data/types.go Normal file
View File

@@ -0,0 +1,14 @@
package data
const (
unsignedMask64 = 0x7FFFFFFF
)
// DBCredentials holds generated database access parameters for a service account.
type DBCredentials struct {
Username string
Password string
Database string
Host string
Port int
}