getOS.lua 293 B

12345678910111213
  1. return {
  2. tag = 'system',
  3. summary = 'Get the current operating system.',
  4. description = 'Returns the current operating system.',
  5. arguments = {},
  6. returns = {
  7. {
  8. name = 'os',
  9. type = 'string',
  10. description = 'Either "Windows", "macOS", "Linux", or "Web".'
  11. }
  12. }
  13. }