-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fa2e18
commit fa19a8b
Showing
12 changed files
with
112 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module uim.http.interfaces.stream; | ||
|
||
import uim.http; | ||
|
||
@safe: | ||
interface IStream {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module uim.http.interfaces.table; | ||
|
||
import uim.http; | ||
|
||
@safe: | ||
interface IHTTPTable {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module uim.http.interfaces.uploadedfile; | ||
|
||
import uim.http; | ||
|
||
@safe: | ||
interface IUploadedFile {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module uim.http.interfaces.uri; | ||
|
||
import uim.http; | ||
|
||
@safe: | ||
|
||
interface IUri { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/**************************************************************************************************************** | ||
* Copyright: © 2017-2024 Ozan Nurettin Süel (aka UIManufaktur) * | ||
* License: Subject to the terms of the Apache 2.0 license, as written in the included LICENSE.txt file. * | ||
* Authors: Ozan Nurettin Süel (aka UIManufaktur) * | ||
*****************************************************************************************************************/ | ||
module uim.http.mixins.session; | ||
|
||
import uim.http; | ||
@safe: | ||
|
||
string sessionThis(string name = null) { | ||
string fullName = name ~ "Session"; | ||
return objThis(fullName); | ||
} | ||
|
||
template SessionThis(string name = null) { | ||
const char[] SessionThis = sessionThis(name); | ||
} | ||
|
||
string sessionCalls(string name) { | ||
string fullName = name ~ "Session"; | ||
return objCalls(fullName); | ||
} | ||
|
||
template SessionCalls(string name) { | ||
const char[] SessionCalls = sessionCalls(name); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters