The acts postgres plugin for acts.
create `config/acts.cfg` in current dir
```no_compile
postgres {
}
```
```bash,no_compile
cargo add acts-store-postgres
```
```rust,no_run
use acts::{EngineBuilder, Result};
use acts_store_postgres::PostgresStore;
async fn main() -> Result<()> {
}
```