2023-12-06 04:00:07 +00:00
|
|
|
import {ArtifactClient, DefaultArtifactClient} from './internal/client'
|
2023-08-03 13:34:41 -04:00
|
|
|
|
2023-08-21 21:23:54 +00:00
|
|
|
export * from './internal/shared/interfaces'
|
2023-12-05 17:35:46 +00:00
|
|
|
export * from './internal/shared/errors'
|
2023-12-06 04:00:07 +00:00
|
|
|
export * from './internal/client'
|
2023-08-03 13:34:41 -04:00
|
|
|
|
2023-12-06 04:00:07 +00:00
|
|
|
const client: ArtifactClient = new DefaultArtifactClient()
|
|
|
|
|
export default client
|