@zooly/app-srv is the server package that handles API calls for the main application. It's built on top of the @zooly/app-db package and provides the server-side business logic.
@zooly/app-srvpackages/srv@zooly/app-db packageThis package only exports its own functionality (terms setup). Other functionality like likeness search, voice operations, S3 utilities, and payment processing should be imported directly from their respective packages (@zooly/likeness-search, @zooly/util-elevenlabs, @zooly/util-srv, @zooly/srv-stripe-payment).
The server package acts as a thin layer over the database package:
packages/srv/
└── src/
└── index.ts # Server API functions
@zooly/app-db - Database access layerThis package is used by Next.js apps to provide server-side API functionality. It handles business logic and coordinates database operations through the db package.