@kody/jira
src/setup-export.js
11 lines · 318 B · JavaScriptimport { setup } from './jira.js'
/**
* Return prefilled Jira OAuth and API-token setup URLs for the given account.
* @example
* import setup from 'kody:@kody/jira/setup'
* const urls = setup({ account: 'jira-work', site: 'acme' })
*/
export default function setupEntrypoint(input = {}) {
return setup(input)
}