wip: Mark update slots with XX:, add pkg/server/container.go

This commit is contained in:
Michael Hohn
2024-06-13 08:46:05 -07:00
committed by =Michael Hohn
parent 5b9df73424
commit 8df9673897
9 changed files with 434 additions and 46 deletions

View File

@@ -32,7 +32,7 @@ type DBSpec struct {
DBname string
}
func (s *StorageContainer) SetupDB() error {
func (s *StorageContainer) SetupTables() error {
// TODO set up query pack storage
return nil
}
@@ -84,7 +84,7 @@ func NewStore(startingID int) (Storage, error) {
}
s := StorageContainer{RequestID: startingID, DB: db}
if err := s.SetupDB(); err != nil {
if err := s.SetupTables(); err != nil {
return nil, err
}
@@ -95,7 +95,7 @@ func NewStore(startingID int) (Storage, error) {
return &s, nil
}
func NewStorageContainer(startingID int) (*StorageContainer, error) {
func NewServerStore(startingID int) (*StorageContainer, error) {
db, err := ConnectDB(DBSpec{
Host: "postgres",
@@ -109,7 +109,7 @@ func NewStorageContainer(startingID int) (*StorageContainer, error) {
}
s := StorageContainer{RequestID: startingID, DB: db}
if err := s.SetupDB(); err != nil {
if err := s.SetupTables(); err != nil {
return nil, err
}