Skip to content

Commit

Permalink
fix: fixes merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
m-housh committed May 8, 2024
2 parents 69aaa18 + c456f68 commit a1cbd32
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
1 change: 1 addition & 0 deletions Examples/Examples/Dependencies/DatabaseClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ enum DatabaseRoutes: RouteCollection {
}
}

<<<<<<< HEAD
struct InsertRequest {
var description: String
var complete: Bool
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ let package = Package(
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
.product(name: "Dependencies", package: "swift-dependencies"),
.product(name: "Supabase", package: "supabase-swift"),
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.testTarget(
name: "SupabaseDependenciesTests",
dependencies: [
"SupabaseDependencies"
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]
),
.testTarget(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# ``SupabaseDependencies``
# `SupabaseDependencies`


A dependency that adds some niceties around the `Supabase` database and includes an `auth` client and
database router.
A dependency that adds some niceties around the `Supabase` database and includes
an `auth` client and database router.

## Overview

A [swift-dependencies](https://github.com/pointfreeco/swift-dependencies) client for supabase integrations.
A [swift-dependencies](https://github.com/pointfreeco/swift-dependencies) client
for supabase integrations.

This dependency wraps the [supabase-swift](https://github.com/supabase-community/supabase-swift) client,
This dependency wraps the
[supabase-swift](https://github.com/supabase-community/supabase-swift) client,
database, and auth for convenience methods for use in `TCA` based apps.

This package adds some niceties around database queries as well as holds onto an `auth` client.
This package adds some niceties around database queries as well as holds onto an
`auth` client.

In general you use this package / dependency to build your database clients for usage in a
[swift-composable-architecture](https://github.com/pointfreeco/swift-composable-architecture) based application.
In general you use this package / dependency to build your database clients for
usage in a
[swift-composable-architecture](https://github.com/pointfreeco/swift-composable-architecture)
based application.

0 comments on commit a1cbd32

Please sign in to comment.