Commit 2006d0c
Add Cache, Scheduler, and EventBus modules for enhanced application capabilities (#6)
* Initial plan for issue
* Implement cache module with memory storage
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Implement scheduler module with job management
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Implement eventbus module with pub/sub messaging
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Address code review feedback and fix linting issues
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Add go.mod files for cache, eventbus, and scheduler modules
- Created independent go.mod files for modules/cache, modules/eventbus, and modules/scheduler
- Ran go mod tidy on all modules to resolve dependencies
- Applied go fmt formatting to all module files
- All tests are now passing for individual modules
- Fixed module structure to work as independent packages
* Tests passing, readmes updated.
* Implement scheduler job persistence functionality
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Fix module compatibility issues
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Verify module compatibility and tests
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Update module Go version and modular dependency
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Correcting versions
* Fixing failing test
* Missed changes
* Tests and linting all passing
* Update feeders/affixed_env.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Remove unused ConfigProvider parameter from updateConfig function
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
* Mod tidy
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: intel352 <77607+intel352@users.noreply.github.com>
Co-authored-by: Jonathan Langevin <codingsloth@pm.me>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>1 parent 92cd148 commit 2006d0c
97 files changed
Lines changed: 8789 additions & 704 deletions
File tree
- cmd/modcli/cmd/testdata/golden/goldenmodule
- example_tenants
- example
- api
- router
- webserver
- feeders
- modules
- auth
- cache
- chimux
- database
- eventbus
- jsonschema
- reverseproxy
- scheduler
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| 28 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
2 | 53 | | |
| 54 | + | |
3 | 55 | | |
4 | | - | |
5 | | - | |
6 | | - | |
7 | 56 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
13 | 60 | | |
14 | | - | |
15 | | - | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
16 | 68 | | |
17 | | - | |
18 | | - | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
19 | 73 | | |
20 | | - | |
21 | | - | |
22 | | - | |
| 74 | + | |
| 75 | + | |
23 | 76 | | |
24 | | - | |
25 | | - | |
26 | | - | |
| 77 | + | |
| 78 | + | |
27 | 79 | | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
35 | 34 | | |
36 | | - | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
37 | 50 | | |
38 | 51 | | |
39 | 52 | | |
| |||
0 commit comments