Comparison

squishy @ 503:395ae8df5a9e

squishy: Move bit fallback module out of Prosody namespace This way, prosody.util.bitcompat should pick it up
author Kim Alvefur <zash@zash.se>
date Fri, 23 Jun 2023 22:20:24 +0200
parent 500:674daff6c73b
child 504:8ed3c95bf880
comparison
equal deleted inserted replaced
502:783188a44b0a 503:395ae8df5a9e
58 Module "util.http" "util/http.lua" 58 Module "util.http" "util/http.lua"
59 Module "net.http.parser" "net/http/parser.lua" 59 Module "net.http.parser" "net/http/parser.lua"
60 Module "net.http" "net/http.lua" 60 Module "net.http" "net/http.lua"
61 Module "util.x509" "util/x509.lua" 61 Module "util.x509" "util/x509.lua"
62 62
63 if GetOption "internal-bit-module" then
64 Module "bit" "libs/bit.lua"
65 end
66 end 63 end
67 64
68 ProsodyModules() 65 ProsodyModules()
69 66
70 -- Verse plugins 67 -- Verse plugins
134 131
135 VerseModule "verse.client" "client.lua" 132 VerseModule "verse.client" "client.lua"
136 VerseModule "verse.component" "component.lua" 133 VerseModule "verse.component" "component.lua"
137 VerseModule "verse.bosh" "bosh.lua" 134 VerseModule "verse.bosh" "bosh.lua"
138 135
136 if GetOption "internal-bit-module" then
137 Module "bit" "libs/bit.lua"
138 end
139
139 -- Main verse file 140 -- Main verse file
140 Main "init.lua" 141 Main "init.lua"