f9fbda1ec5
* Added License reference at the beginning of each file
18 lines
286 B
TypeScript
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;
|