易云轻量版服务端
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.

12345678910111213141516171819202122232425
  1. package env
  2. import (
  3. "locking-kit-server/consts"
  4. "os"
  5. )
  6. /**
  7. * @author yuanrh
  8. * @description //环境变量
  9. * @date 2021/6/28 11:11
  10. **
  11. */
  12. //IFPS.exe 路径
  13. var IpfsPath = os.Getenv(consts.IPFS_PATH)
  14. //工作目录 TODO
  15. //var WorkSpace = os.Getenv(consts.WORKSPACE)
  16. var WorkSpace = "D:\\easycloud\\"
  17. //当前用户
  18. var CurrentUserId string