Skip to content

Commit

Permalink
rename func files to index
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Sep 22, 2023
1 parent cf057fc commit 2bb6477
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
Void,
Null
} from 'azle';
import Notifier, { NotifierFunc } from '../notifiers/notifiers';
import Notifier, { NotifierFunc } from '../notifiers';

@func([text], text, 'query')
class BasicFunc extends Func {}
Expand Down
8 changes: 4 additions & 4 deletions examples/func_types/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"type": "custom",
"build": "npx azle func_types",
"root": "src",
"ts": "canisters/func_types/func_types.ts",
"candid": "canisters/func_types/func_types.did",
"ts": "canisters/func_types/index.ts",
"candid": "canisters/func_types/index.did",
"wasm": ".azle/func_types/func_types.wasm.gz",
"declarations": {
"output": "test/dfx_generated/func_types",
Expand All @@ -17,8 +17,8 @@
"type": "custom",
"build": "npx azle notifiers",
"root": "src",
"ts": "canisters/notifiers/notifiers.ts",
"candid": "canisters/notifiers/notifiers.did",
"ts": "canisters/notifiers/index.ts",
"candid": "canisters/notifiers/index.did",
"wasm": ".azle/notifiers/notifiers.wasm.gz",
"declarations": {
"output": "test/dfx_generated/notifiers",
Expand Down

0 comments on commit 2bb6477

Please sign in to comment.