Web API for code.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
365 B

  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()