Files
certd/packages/api/src/utils/util.path.js
T

10 lines
181 B
JavaScript
Raw Normal View History

2020-12-13 23:06:17 +08:00
import path from 'path'
function getUserBasePath () {
const userHome = process.env.USERPROFILE
return path.resolve(userHome, './.certd')
}
export default {
getUserBasePath
}