Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/jira

src/setup-export.js

11 lines · 318 B · JavaScript
import { 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)
}