Initial commit

This commit is contained in:
Lizandro Guarnizo
2025-02-06 14:22:29 -05:00
commit 6d8f1bcd6f
452 changed files with 250835 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package config
type QueueConfig struct {
Driver string `yaml:"driver" env:"CACHE_DRIVER"`
Name string `yaml:"name" env:"CACHE_NAME"`
Host string `yaml:"host" env:"CACHE_HOST"`
Port string `yaml:"port" env:"CACHE_PORT"`
DB string `yaml:"db" env:"CACHE_DB"`
}