0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 02:18:53 +02:00

ircd:Ⓜ️ Move all ircd/m/* units up to ircd/.

This commit is contained in:
Jason Volk 2019-01-23 13:24:53 -08:00
parent 14b57f2eac
commit cd30a01e9d
11 changed files with 9 additions and 14 deletions

View file

@ -130,15 +130,15 @@ libircd_la_SOURCES = \
server.cc \
client.cc \
resource.cc \
m/name.cc \
m/id.cc \
m/event.cc \
m/dbs.cc \
m/state.cc \
m/room.cc \
m/request.cc \
m/v1.cc \
m/m.cc \
m_name.cc \
m_id.cc \
m_event.cc \
m_dbs.cc \
m_state.cc \
m_room.cc \
m_request.cc \
m_v1.cc \
m.cc \
ircd.cc \
###

View file

@ -1,5 +0,0 @@
This directory might not exist indefinitely. Ideally most of this code
should be pushed out to modules and libircd m.cc should tie them together.
Due to some shortcomings in the module system that will make this ugly
right now I'm just building the stuff in here and that refactor won't be
anything truly major when it's time.