Modulo planilla v1
Some checks failed
build-and-push / build (push) Successful in 33s
build-and-push / deploy (push) Failing after 1s

This commit is contained in:
2025-05-02 17:59:47 -06:00
parent 76138f676d
commit e1dc751397
760 changed files with 82397 additions and 10 deletions

11
api/node_modules/pg-protocol/src/index.ts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import { DatabaseError } from './messages'
import { serialize } from './serializer'
import { Parser, MessageCallback } from './parser'
export function parse(stream: NodeJS.ReadableStream, callback: MessageCallback): Promise<void> {
const parser = new Parser()
stream.on('data', (buffer: Buffer) => parser.parse(buffer, callback))
return new Promise((resolve) => stream.on('end', () => resolve()))
}
export { serialize, DatabaseError }