Local is a Backend backed by an OS directory. Useful for development, tests, and single-host deployments. Not a substitute for S3/GCS when you need durability or cross-instance sharing.
| 24 | // tests, and single-host deployments. Not a substitute for S3/GCS when |
| 25 | // you need durability or cross-instance sharing. |
| 26 | type Local struct { |
| 27 | root string |
| 28 | } |
| 29 | |
| 30 | // NewLocal validates Root and returns a Local backend. Root must exist |
| 31 | // and be a directory; the backend never creates Root automatically |
nothing calls this directly
no outgoing calls
no test coverage detected