-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 175 - post twitter #182
base: main
Are you sure you want to change the base?
Conversation
Coverage Report
File Coverage
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Acho que é uma boa mudar os imports pra manter o padrão utilizando alias
import { generateAuthURL } from '../helpers/generate-auth-url'; | ||
import type { AuthorizeTwitterService } from '../services/authorize-twitter-service'; | ||
import type { PostTwitterService } from '../services/post-twitter-service'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { generateAuthURL } from '../helpers/generate-auth-url'; | |
import type { AuthorizeTwitterService } from '../services/authorize-twitter-service'; | |
import type { PostTwitterService } from '../services/post-twitter-service'; | |
import { generateAuthURL } from '@/features/twitter/helpers/generate-auth-url'; | |
import type { AuthorizeTwitterService } from '@/features/twitter/services/authorize-twitter-service'; | |
import type { PostTwitterService } from '@/features/twitter/services/post-twitter-service'; |
import { TwitterController } from '../controllers/twitter-controller'; | ||
import { AuthorizeTwitterService } from '../services/authorize-twitter-service'; | ||
import { PostTwitterService } from '../services/post-twitter-service'; | ||
import { TwitterService } from '../services/twitter-service'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import { TwitterController } from '../controllers/twitter-controller'; | |
import { AuthorizeTwitterService } from '../services/authorize-twitter-service'; | |
import { PostTwitterService } from '../services/post-twitter-service'; | |
import { TwitterService } from '../services/twitter-service'; | |
import { TwitterController } from '@/features/twitter/controllers/twitter-controller'; | |
import { AuthorizeTwitterService } from '@/features/twitter/services/authorize-twitter-service'; | |
import { PostTwitterService } from '@/features/twitter/services/post-twitter-service'; | |
import { TwitterService } from '@/features/twitter/services/twitter-service'; |
import type { Logger } from '@/shared/infra/logger/logger'; | ||
import type { Service } from '@/shared/protocols/service'; | ||
|
||
import type { TwitterPostResponse } from '../models/twitter-models'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import type { TwitterPostResponse } from '../models/twitter-models'; | |
import type { TwitterPostResponse } from '@/features/twitter/models/twitter-models'; |
Closes
Feature
Essa tarefa é responsável por fazer o endpoint do post do twitter, com as partes anteriores de autenticação já feitas
Checklist
Additional info