getUserDirectory.lua 313 B

123456789101112
  1. return {
  2. summary = 'Get the location of the user\'s home directory.',
  3. description = 'Returns the absolute path of the user\'s home directory.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'path',
  8. type = 'string',
  9. description = 'The absolute path of the user\'s home directory.'
  10. }
  11. }
  12. }