mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-23 17:13:40 +03:00
6 lines
181 B
JavaScript
6 lines
181 B
JavaScript
|
import { createNewUser } from '@wasp/core/auth.js'
|
||
|
|
||
|
export const signup = async ({ username, email, password }, context) => {
|
||
|
await createNewUser({ username, email, password })
|
||
|
}
|