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
2 changed files with 1 additions and 22 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.7"
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)
}