blob: 5e281958ea89d981fabf52edf685d8a6f7a1000c (
plain)
1
2
3
4
5
6
7
8
|
import { writable } from 'svelte/store';
import { ActiveChannel, Channels } from '$lib/store/channels';
import { Messages } from '$lib/store/messages';
export const currentUser = writable(null);
export const activeChannel = writable(new ActiveChannel());
export const channelsList = writable(new Channels());
export const messages = writable(new Messages());
|