18 lines
302 B
JavaScript
18 lines
302 B
JavaScript
// @flow
|
|
|
|
export function githubUrl(): string {
|
|
return 'https://www.github.com/outline';
|
|
}
|
|
|
|
export function blogUrl(): string {
|
|
return 'https://medium.com/getoutline';
|
|
}
|
|
|
|
export function developers(): string {
|
|
return '/developers';
|
|
}
|
|
|
|
export function signin(): string {
|
|
return '/auth/slack';
|
|
}
|