Web API for code.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

create-default-user.ts 365 B

1234567891011121314
  1. import { Uuid } from '@theoryofnekomata/uuid-buffer';
  2. import { UserService, UserServiceImpl } from '../src/modules/user'
  3. const main = async () => {
  4. const userService: UserService = new UserServiceImpl()
  5. const newUser = await userService.create({
  6. username: 'username',
  7. password: 'password',
  8. })
  9. console.log(Uuid.from(newUser.id).toString());
  10. }
  11. void main()