Compare commits

..
Author SHA1 Message Date
phoenix e124bcfda8 Changed name of struct 2025-11-09 12:43:41 -05:00
phoenix 31bb62b7ed Version bump 2025-11-09 12:28:19 -05:00
phoenix fde71d8fe9 Code formatting 2025-11-09 12:28:08 -05:00
phoenix c5c42c5344 Added Scheduled Message event 2025-11-09 12:26:57 -05:00
4 changed files with 2 additions and 36 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.8"
VERSION="0.0.6"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
-21
View File
@@ -1,21 +0,0 @@
package config
import (
"fmt"
)
type TwiloConfig struct {
AccountSID string `json:"auth_sid"`
ServiceSID string `json:"service_sid"`
URI string `json:"uri"`
AuthToken string `json:"auth_token"`
Number string `json:"phone_number"`
}
func (config *TwiloConfig) PrintConfig() {
fmt.Printf("Account SID: %s\n", config.AccountSID)
fmt.Printf("Service SID: %s\n", config.ServiceSID)
fmt.Println("URI:", config.URI)
fmt.Printf("Auth Token: %s\n", config.AuthToken)
fmt.Printf("Number: %s\n", config.Number)
}
+1 -1
View File
@@ -6,6 +6,6 @@ import (
type Message struct {
Id uuid.UUID `json:"id"`
Content string `json:"content,omitempty"`
Content string `json:"content"`
UserId uuid.UUID `json:"user_id"`
}
-13
View File
@@ -1,13 +0,0 @@
package user
import (
"time"
"github.com/google/uuid"
)
type ServiceUser struct {
Id uuid.UUID `json:"id"`
Passphrase string `json:"passphrase,omitempty"`
Created *time.Time `json:"date_created,omitempty"`
}