We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some issues need to be addressed after merging fix/session-and-misc
fix/session-and-misc
Bin command file names need to be renamed to a standard form. For example:
commandAgentLock.ts commandPingNode.ts
command
Let's simplify this. For example:
. ├── agent │ ├── commandAgentLockAll.ts │ ├── commandAgentLock.ts │ ├── commandAgentUnlock.ts │ ├── commandStartAgent.ts │ ├── commandStatusAgent.ts │ ├── commandStopAgent.ts │ └── index.ts
Can instead be:
. ├── agent │ ├── lockAll.ts │ ├── lock.ts │ ├── unlock.ts │ ├── start.ts │ ├── status.ts │ ├── stop.ts │ └── index.ts
The sub issues in the task list also need to be completed.
Relates to #200 Relates to #218
An MR has been created for this issue. https://gitlab.com/MatrixAI/Engineering/Polykey/js-polykey/-/merge_requests/210
src/client/
src/bin/
CallCredentials
SessionCredentials
The text was updated successfully, but these errors were encountered:
tegefaulkes
DrFacepalm
No branches or pull requests
Specification
Some issues need to be addressed after merging
fix/session-and-misc
Bin command file names need to be renamed to a standard form.
For example:
command
prefix being usedLet's simplify this. For example:
Can instead be:
The sub issues in the task list also need to be completed.
Additional context
Relates to #200
Relates to #218
An MR has been created for this issue.
https://gitlab.com/MatrixAI/Engineering/Polykey/js-polykey/-/merge_requests/210
Tasks
src/client/
should be structured similarly tosrc/bin/
they both have a set of "procedures" relating to the domains.CallCredentials
andSessionCredentials
for GRPC #230The text was updated successfully, but these errors were encountered: