Directory structure:
└── and3rson-telemux/
├── README.md
├── CHANGELOG.md
├── filters.go
├── filters_test.go
├── go.mod
├── go.sum
├── handlers.go
├── handlers_test.go
├── LICENSE
├── Makefile
├── mkchangelog.sh
├── mux.go
├── mux_test.go
├── persistence.go
├── persistence_test.go
├── types.go
├── update.go
├── update_test.go
├── utils_test.go
├── .codeclimate.yml
├── .travis.yml
├── examples/
│ ├── album_conversation/
│ │ ├── main.go
│ │ └── .gitignore
│ ├── cat_callback/
│ │ └── main.go
│ ├── conversation_with_callbacks/
│ │ └── main.go
│ ├── echo/
│ │ └── main.go
│ ├── error_handling/
│ │ └── main.go
│ ├── filters/
│ │ └── main.go
│ ├── members/
│ │ └── main.go
│ ├── nested_mux/
│ │ └── main.go
│ └── private_only/
│ └── main.go
└── gormpersistence/
├── README.md
├── go.mod
├── go.sum
├── Makefile
├── models.go
├── persistence.go
└── persistence_test.go