Some changes
Some checks failed
Deploy Project / deploy (push) Failing after 4s
Testing / test (1.23.x, ubuntu-latest) (push) Successful in 52s

This commit is contained in:
2025-02-11 17:05:21 -05:00
parent 0e3ef7d956
commit b6d88a0ae8
8 changed files with 55 additions and 8 deletions

View File

@ -8,7 +8,7 @@ import (
)
var (
Message_welcome = `Welcome to Receipts Tracker Bot Your Ultimate Receipt Tracking Solution!
Message_welcome = `Welcome to Receipts Tracker Bot - Your Ultimate Receipt Tracking Solution!
We are thrilled to have you join our community. At Receipts Tracker, we are committed to making your financial management effortless and efficient. Our advanced receipt tracking system is designed to help you organize, store, and manage all your receipts in one secure place.
@ -17,7 +17,7 @@ Why Choose Receipts Tracker?
Easy Organization: Seamlessly categorize and store your receipts for quick access.
Secure Storage: Enjoy peace of mind with our top-notch security measures.
Effortless Management: Track your expenses and stay on top of your finances with ease.
User-Friendly Interface: Navigate our intuitive platform with ease, even if youre not tech-savvy.
User-Friendly Interface: Navigate our intuitive platform with ease, even if you are not tech-savvy.
Getting Started
Sign Up: Create your free account in just a few clicks.
@ -141,6 +141,7 @@ func New() (*Config, error) {
viper.SetConfigName("config") // name of config file (without extension)
viper.SetConfigType("yml") // REQUIRED if the config file does not have the extension in the name
viper.AddConfigPath("./") // optionally look for config in the working directory
viper.AddConfigPath("/app/config") // optionally look for config in the working directory
viper.AddConfigPath("/etc/tracker") // optionally look for config in the working directory
viper.AutomaticEnv()