Skip to content

Instantly share code, notes, and snippets.

View Hwan-seok's full-sized avatar
👿

Hwanseok Kang (Barth) Hwan-seok

👿
  • S
  • Saarbrücken, Germany
  • 06:23 (UTC +02:00)
View GitHub Profile
@TimurMukhortov
TimurMukhortov / authorization_interceptor.dart
Last active May 16, 2024 19:18
Dio authorization Interceptor with QueuedInterceptorsWrapper
class AuthorizationInterceptor extends QueuedInterceptorsWrapper {
final TokenRepository _tokenRepository;
final AuthorizationRepository _authorizationRepository;
final RefreshTokenRepository _refreshTokenRepository;
AuthorizationInterceptor({
required TokenRepository tokenRepository,
required AuthorizationRepository authorizationRepository,
required RefreshTokenRepository refreshTokenRepository,
}) : _tokenRepository = tokenRepository,
@ljlm0402
ljlm0402 / build.md
Last active June 26, 2023 23:40
Github Actions Workflow / 2020. 02. 28

Workflow 실행

 name: my workflow                           # Workflow 이름
 on: [push]                                  # Event 감지

 jobs:                                       # Job 설정
   build:                                    # Job ID
     name: hello github action               # Job 이름
     runs-on: ubuntu-latest                  # Job 인스턴스 환경