Dev #2

Merged
MarciiTheDev merged 7 commits from dev into main 2023-07-25 15:02:42 +00:00
7 changed files with 30 additions and 3 deletions
Showing only changes of commit fe4c648b07 - Show all commits

View File

@ -0,0 +1,5 @@
return {
InvalidAccessToken = function(message: string):string
return ("[MarcSync Exception] InvalidAccessToken: %s"):format(message)
end
}

View File

@ -0,0 +1,8 @@
return {
CollectionNotFound = function(message: string):string
return ("[MarcSync Exception] CollectionNotFound: %s"):format(message)
end,
CollectionAlreadyExists = function(message: string):string
return ("[MarcSync Exception] CollectionAlreadyExists: %s"):format(message)
end
}

View File

@ -0,0 +1,8 @@
return {
InvalidEntryData = function(message: string):string
return ("[MarcSync Exception] InvalidEntryData: %s"):format(message)
end,
EntryNotFound = function(message: string):string
return ("[MarcSync Exception] EntryNotFound: %s"):format(message)
end
}

View File

@ -0,0 +1,9 @@
type EntryData = {
[string]: any
}
return {
getType = function(): EntryData
return {}
end,
}

View File

@ -1 +0,0 @@
return require(script.Parent.Parent.Parent.Objects.Collection)

View File

@ -1 +0,0 @@
return require(script.Parent.Parent.Parent.Objects.Entry)

View File

@ -1 +0,0 @@
return require(script.Parent.Parent)