Skip to content

Commit

Permalink
added bare bones volunteer signup implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
vaaranan-y committed Nov 2, 2023
1 parent c415721 commit 6cb5289
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions backend/typescript/services/implementations/volunteerSignup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import IVolunteerSignup from "../interfaces/volunteerSignup";

class VolunteerSignup implements IVolunteerSignup{

async getVolunteerSignup(): Promise<void> {

}

async postVolunteerSignup(): Promise<void> {

}

async editVolunteerSignup(): Promise<void> {

}

}

export default VolunteerSignup;

0 comments on commit 6cb5289

Please sign in to comment.