storj/web/satellite/src/store/index.ts
Bogdan Artemenko f9fbda1ec5
Auth logic additions (#710)
* Added License reference at the beginning of each file
2018-11-27 12:51:33 +02:00

18 lines
286 B
TypeScript

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
import Vue from 'vue';
import Vuex from 'vuex';
import {authModule} from "@/store/modules/auth";
Vue.use(Vuex);
const store = new Vuex.Store({
modules: {
authModule
}
});
export default store;