diff options
author | Keuin <[email protected]> | 2023-07-07 00:34:55 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2023-07-07 00:34:55 +0800 |
commit | 7fd817f6d1ead3de85294c1893a6e1572a1d12e3 (patch) | |
tree | 38b9f13104fe208449b679a2b77959dea5ab1b4e /common/filename.go | |
parent | 6eb5a7af48d04adc5625cbc8355e2556db4b992f (diff) |
Refactor: move file operations into single package.
Diffstat (limited to 'common/filename.go')
-rw-r--r-- | common/filename.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/common/filename.go b/common/filename.go deleted file mode 100644 index aedd377..0000000 --- a/common/filename.go +++ /dev/null @@ -1,7 +0,0 @@ -package common - -import "fmt" - -func CombineFileName(base string, ext string) string { - return fmt.Sprintf("%s.%s", base, ext) -} |