diff --git a/backend/typescript/services/implementations/volunteerSignup.ts b/backend/typescript/services/implementations/volunteerSignup.ts new file mode 100644 index 0000000..f1b1a13 --- /dev/null +++ b/backend/typescript/services/implementations/volunteerSignup.ts @@ -0,0 +1,19 @@ +import IVolunteerSignup from "../interfaces/volunteerSignup"; + +class VolunteerSignup implements IVolunteerSignup{ + + async getVolunteerSignup(): Promise { + + } + + async postVolunteerSignup(): Promise { + + } + + async editVolunteerSignup(): Promise { + + } + +} + +export default VolunteerSignup;