Added New Method to Get Side

This commit is contained in:
manee_too 2026-05-07 13:06:36 +07:00 committed by GitHub
parent 5e972a7b9c
commit 8397d869c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,11 @@ Then, you should do `.Server` or `.Client`
```lua
local Server = Warp.Server() --> for Server-side only
local Client = Warp.Client() --> for Client-side only
--..or..--
local Server = Warp.Server
local Client = Warp.Client
```
### `Basic Usage`
@ -47,4 +52,4 @@ if not response then
return
end
print(response, "from Server!")
```
```