Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 0 additions & 99 deletions packages/lib-js-core/src/registry.js

This file was deleted.

2 changes: 0 additions & 2 deletions packages/lib-js-core/src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import Logger from './logger'
import Channel from './channel'
import Class from './class'
import Settings from './settings'
import Registry from './registry'

class Server {
constructor (ctx = {}) {
Expand All @@ -36,7 +35,6 @@ class Server {
this.instance = new Instance(config)
this.logger = Logger(config)
this.users = new Users(config)
this.registry = new Registry(config)
this.data = new Proxy(new Data(settings), {
get (target, className) {
return new Data(getConfig(className))
Expand Down