Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Ludicrous
Path: blob/main/config.ts
1222 views
1
import * as enc from './encoding';
2
3
const Encoding: any = {...enc.default}
4
5
export default {
6
proxy: 'Ultraviolet',
7
config: {
8
'Ultraviolet': {
9
prefix: '/~/uv/',
10
encodeUrl: Encoding.xor.encode,
11
decodeUrl: Encoding.xor.decode,
12
},
13
'Dynamic': {
14
prefix: '/~/dip/',
15
encodeUrl: Encoding.xor.encode,
16
decodeUrl: Encoding.xor.decode,
17
},
18
'Rammerhead': {/*will be done soon probably*/},
19
}
20
}
21