Skip to content

Commit

Permalink
chore: Change package name and fix readme table issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kezz committed Sep 18, 2024
1 parent d6023ee commit 339cf8a
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ posthog-kotlin is a Kotlin library to interact with the PostHog API.
## Features
posthog-kotlin currently supports the following features:

| Feature | Implemented |
| --- | --— |
| Single/Batch events ||
| Identify ||
| Feature | Implemented |
| --- |--- |
| Single/Batch events | |
| Identify | |

## Usage
### Dependency
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package dev.kezz.posthog
package com.noxcrew.posthog

import dev.kezz.posthog.internal.EventQueue
import dev.kezz.posthog.internal.PostHogEvent
import com.noxcrew.posthog.internal.EventQueue
import com.noxcrew.posthog.internal.PostHogEvent
import kotlinx.coroutines.Job
import kotlinx.coroutines.SupervisorJob
import kotlinx.serialization.json.JsonObject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.kezz.posthog
package com.noxcrew.posthog

import kotlinx.serialization.json.JsonElement
import kotlinx.serialization.json.JsonPrimitive
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.kezz.posthog.internal
package com.noxcrew.posthog.internal

import kotlinx.serialization.Serializable

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package dev.kezz.posthog.internal
package com.noxcrew.posthog.internal

import dev.kezz.posthog.PostHog
import com.noxcrew.posthog.PostHog
import kotlinx.coroutines.CoroutineName
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.kezz.posthog.internal
package com.noxcrew.posthog.internal

import kotlinx.serialization.KSerializer
import kotlinx.serialization.descriptors.PrimitiveKind
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.kezz.posthog.internal
package com.noxcrew.posthog.internal

/** A collection of PostHog constants. */
internal object PostHogConstants
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.kezz.posthog.internal
package com.noxcrew.posthog.internal

import kotlinx.serialization.json.JsonElement
import java.time.Instant
Expand Down

0 comments on commit 339cf8a

Please sign in to comment.