package invited_code type ConvertUseCase interface { EncodeFromNum(id int64) (string, error) DecodeFromCode(code string) (int64, error) }