🧁 An object-oriented Gemini server for Deno!
gemini-protocol deno typescript gemini
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(decorators): assumed route format

Fuwn 476160a5 1093a718

+1 -1
+1 -1
laurali/decorators.ts
··· 29 29 key: string | symbol, 30 30 descriptor: PropertyDescriptor, 31 31 ) => { 32 - target.addRoute(path || key, descriptor.value); 32 + target.addRoute(path || `/${key.toString()}`, descriptor.value); 33 33 34 34 return descriptor; 35 35 };