UNPKG
@pump-fun/shared-contracts
Version:
latest (0.2.2)
0.2.2
Shared contracts for Pump.fun microservices.
@pump-fun/shared-contracts
/
src
/
api-contracts
/
schemas
/
health.schema.ts
9 lines
(7 loc)
•
193 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import z
from
"zod"
; export
const
HealthSchema = z.
object
({ service: z.literal(
"notification-api"
), status: z.literal(
"ok"
), timestamp: z.
string
().datetime(), version: z.
string
(), });