// tts-server: OpenAI-compatible HTTP server over the TTS pipeline.
// Includes exercise the vendored cpp-httplib and yyjson build paths.

#include "higgs.h"

#include <cstdio>

#include "httplib.h"
#include "yyjson.h"

int main(void) {
    printf("higgstts.cpp %s\n", hg_version());
    yyjson_mut_doc * doc = yyjson_mut_doc_new(NULL);
    yyjson_mut_doc_free(doc);
    return 0;
}
