-
Notifications
You must be signed in to change notification settings - Fork 203
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
BkTimetable cannot be created directly #652
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For some reason
BkTimetable
is public but has package-local constructor. This lead to the situation whenBkTimetable
cannot be created from any package other thanorg.takes.http
. Again, this leads to inability to createFtBasic
the same way as it's done inFtCLI
.Creating
FtBasic
is needed to avoid usingFtCLI
because it would be right to decouple command line parsing andFtBasic
creation. In application which use Takes may be much more command line arguments so usingFtCLI
leads to having two different pieces of code parsing command line.So let's make
BkTimetable
constructor public to have more flexibility during construction of actual Takes based HTTP server.The text was updated successfully, but these errors were encountered: