<p align="center">
  <a href="https://foscia.dev">
    <img width="250" src="https://foscia.dev/img/logo.svg" alt="Foscia">
  </a>
</p>

<p align="center">
<a href="https://foscia.dev">
  Website
</a>
•
<a href="https://foscia.dev/docs/getting-started">
  Documentation
</a>
</p>

# @foscia/http

HTTP adapter implementation for [Foscia](https://foscia.dev) actions.

## Usage

This package provides factories to create an HTTP client action factory.

```typescript
import { makeActionFactory } from '@foscia/core';
import { makeHttpAdapter } from '@foscia/http';

export default makeActionFactory({
  ...makeHttpAdapter({
    baseURL: '/api',
  }),
});
```

## License

`@foscia/http` is an open-sourced software licensed under the MIT license.
