mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const os = require('os');
|
|
|
|
module.exports = function getServerlessDir() {
|
|
return path.join(os.homedir(), '.serverless');
|
|
};
|