You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package env
-
- import (
- "locking-kit-server/consts"
- "os"
- )
-
- /**
- * @author yuanrh
- * @description //环境变量
- * @date 2021/6/28 11:11
- **
- */
-
- //IFPS.exe 路径
- var IpfsPath = os.Getenv(consts.IPFS_PATH)
-
- //工作目录 TODO
- //var WorkSpace = os.Getenv(consts.WORKSPACE)
- var WorkSpace = "D:\\easycloud\\"
-
- //当前用户
- var CurrentUserId string
-
|