mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
|
// @flow
|
||
|
function insomniaDocs(slug: string): string {
|
||
|
return `https://support.insomnia.rest${slug}`;
|
||
|
}
|
||
|
|
||
|
export const docsBase = insomniaDocs('/');
|
||
|
export const docsGitSync = insomniaDocs('/article/96-git-sync');
|