Commit 23f9e4e
authored
Add time import to ClickHouse storage module (#76)
### TL;DR
Added time package import to clickhouse.go file.
### What changed?
The `time` package from the Go standard library has been imported in the `internal/storage/clickhouse.go` file.
### How to test?
No specific testing is required for this change as it's an import addition. However, ensure that the build process completes successfully and that any existing tests pass without errors.
### Why make this change?
The addition of the `time` package import suggests that time-related functionality will be used in the clickhouse storage implementation. This could be for handling timestamps, durations, or other time-based operations within the storage layer.1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
0 commit comments