mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-10 04:20:24 +00:00
The case checking seems kinda dumb now looking back at this code. I am not sure why I felt the need to do that, however after being aware of it for some time and not being happy with the extra cycles it puts the code through. This change removes ConvertCase from the utils package, as it's no longer used or needed right now. If it needs co come back, we can re-add the code, but deleting code always makes me happy. It also removed a dependency from the project, which reduces the footprint, great!
16 lines
348 B
Modula-2
16 lines
348 B
Modula-2
module github.com/pb33f/libopenapi
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.8.0
|
|
github.com/vmware-labs/yaml-jsonpath v0.3.2
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dprotaso/go-yit v0.0.0-20220510233725-9ba8df137936 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
)
|