package
0.0.0-20241212173216-745cb4b42230
Repository: https://github.com/ibiscum/go-programming-cookbook-second-edition.git
Documentation: pkg.go.dev

# Functions

Exec initializes storage, then performs operations using the storage interface.
NewMongoStorage initializes a MongoStorage.
PerformOperations creates a candle item then gets it.

# Structs

Item represents an item at a shop.
MongoStorage implements our storage interface.

# Interfaces

Storage is our storage interface We'll implement it with Mongo storage.