config.go 481 B

12345678910111213141516171819
  1. /*
  2. * @Author: LinkLeong link@icewhale.com
  3. * @Date: 2021-09-30 18:18:14
  4. * @LastEditors: LinkLeong
  5. * @LastEditTime: 2022-08-31 17:04:02
  6. * @FilePath: /CasaOS/pkg/config/config.go
  7. * @Description:
  8. * @Website: https://www.casaos.io
  9. * Copyright (c) 2022 by icewhale, All Rights Reserved.
  10. */
  11. package config
  12. import (
  13. "path/filepath"
  14. "github.com/IceWhaleTech/CasaOS-Common/utils/constants"
  15. )
  16. var CasaOSConfigFilePath = filepath.Join(constants.DefaultConfigPath, "casaos.conf")