aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/license/+server.ts
blob: 14db5108203d394df210d7cb73187e160995b32e (plain) (blame)
1
2
3
4
5
import license from "$lib/license.ts";

export const GET = () => {
  return new Response(license);
};