File size: 227 Bytes
85d2530
 
a899dc1
 
85d2530
 
 
 
 
 
a899dc1
85d2530
1
2
3
4
5
6
7
8
9
10
11
12
"use server"

import { ClapProject } from "@aitube/clap"
import * as aitube from "@aitube/client"

export async function exportClap({
  clap,
}: {
  clap: ClapProject
}): Promise<string> {
  return aitube.exportClap({ clap })
}