Skip to content

Commit 9d8d236

Browse files
committed
Export more functions
1 parent a57bff5 commit 9d8d236

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PostgresORM"
22
uuid = "748b5efa-ed57-4836-b183-a38105a77fdd"
33
authors = ["Vincent Laugier <vincent.laugier@gmail.com>"]
4-
version = "0.1.2"
4+
version = "0.1.3"
55

66
[deps]
77
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

src/PostgresORM.jl

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
module PostgresORM
22

3-
export greet, get_orm, create_entity!, create_in_bulk_using_copy,
4-
delete_entity, delete_entity_alike, retrieve_entity, update_entity!,
5-
update_vector_property!, execute_plain_query
6-
3+
# Exposed types of PostgresORM
74
export IEntity, IAppUser, Modification
85

6+
# Exposed functions of PostgresORM
7+
export get_orm, create_entity!,create_in_bulk_using_copy,retrieve_entity,
8+
retrieve_one_entity,update_entity!,update_vector_property!,
9+
delete_entity,delete_entity_alike,execute_plain_query,
10+
execute_query_and_handle_result
11+
12+
913
using Dates, UUIDs
1014

1115
function get_orm end

0 commit comments

Comments
 (0)