export default async function addCode(arg: CodeArgs): Promise<AddCode> {
  try {
    const code = new Code(arg)
    await code.save()
    return { data: code }