feat: CI-CD front #2

Merged
Clement merged 20 commits from feat/CI-CD into master 2024-04-21 13:24:16 +00:00
Showing only changes of commit a2290c21e1 - Show all commits

View File

@ -0,0 +1,5 @@
export default class AstroUtils {
public static async wrap<T = void>(fn: () => T | Promise<T>) {
return await fn()
}
}