config.go 220 B

12345678910111213
  1. package config
  2. import (
  3. "os"
  4. "path/filepath"
  5. "github.com/ayn2op/discordo/internal/constants"
  6. )
  7. func DefaultLogPath() string {
  8. path, _ := os.UserCacheDir()
  9. return filepath.Join(path, constants.Name, "logs.txt")
  10. }