Added new Methods

This commit is contained in:
manee_too 2026-05-07 13:08:57 +07:00 committed by GitHub
parent 976fc4cd26
commit 0c4864ebcb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,7 @@ Get the Server operation for server-side.
```lua ```lua
-- Server -- Server
local Server = Warp.Server() local Server = Warp.Server
``` ```
## `.Client` <Badge type="tip" text="client side" /> ## `.Client` <Badge type="tip" text="client side" />
@ -20,7 +20,7 @@ Get the Client operation for client-side.
```lua ```lua
-- Client -- Client
local Client = Warp.Client() local Client = Warp.Client
``` ```
## `.Buffer` <Badge type="tip" text="universal" /> ## `.Buffer` <Badge type="tip" text="universal" />
@ -31,4 +31,4 @@ Get the Buffer util for schema definition.
-- Universal (Server & Client) -- Universal (Server & Client)
local Buffer = Warp.Buffer() local Buffer = Warp.Buffer()
local schema = Buffer.Schema local schema = Buffer.Schema
``` ```