mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-28 10:20:03 +00:00
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
import { writable } from 'svelte/store';
|
|
|
|
export const gitTokens = writable({
|
|
githubToken: null,
|
|
gitlabToken: null
|
|
});
|