Skip to content

Commit

Permalink
Make findLocalControllersIn private
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamRagstad committed Feb 25, 2022
1 parent 2b4ba22 commit 4fd7c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Knight.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class Knight {
/**
* Find all controllers in the local project
*/
static async findLocalControllersIn(directory: string) {
private static async findLocalControllersIn(directory: string) {
const controllers: IController[] = [];
for await (const file of Deno.readDir(directory)) {
const path = `${directory}/${file.name}`;
Expand Down

0 comments on commit 4fd7c16

Please sign in to comment.