2022-06-29 11:09:58 +08:00
|
|
|
/*
|
|
|
|
* @Author: LinkLeong link@icewhale.com
|
|
|
|
* @Date: 2021-09-30 18:18:14
|
|
|
|
* @LastEditors: LinkLeong
|
2022-09-06 14:28:49 +08:00
|
|
|
* @LastEditTime: 2022-08-31 17:04:02
|
2022-06-29 11:09:58 +08:00
|
|
|
* @FilePath: /CasaOS/pkg/config/config.go
|
|
|
|
* @Description:
|
|
|
|
* @Website: https://www.casaos.io
|
|
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
|
|
*/
|
2021-09-26 10:35:02 +08:00
|
|
|
package config
|
|
|
|
|
2023-07-31 16:53:03 +08:00
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/IceWhaleTech/CasaOS-Common/utils/constants"
|
2021-09-26 10:35:02 +08:00
|
|
|
)
|
2023-07-31 16:53:03 +08:00
|
|
|
|
|
|
|
var CasaOSConfigFilePath = filepath.Join(constants.DefaultConfigPath, "casaos.conf")
|