Rename module.

This commit is contained in:
Dillon Kearns 2022-01-28 09:27:43 -08:00
parent 83053692ca
commit 6f7894fd3f
7 changed files with 7 additions and 11 deletions

File diff suppressed because one or more lines are too long

View File

@ -18,8 +18,8 @@
"DataSource.File",
"DataSource.Port",
"DataSource.Env",
"Session",
"Server.Request",
"Server.Session",
"Server.SetCookie",
"Server.Response",
"Pages.Manifest",

View File

@ -10,8 +10,7 @@ import MySession
import Route exposing (Route)
import Server.Request
import Server.Response
import Server.SetCookie as SetCookie
import Session
import Server.Session as Session
routes :

View File

@ -3,13 +3,10 @@ module MySession exposing (..)
import Codec
import DataSource exposing (DataSource)
import DataSource.Env as Env
import DataSource.Http
import Dict
import Json.Decode as Decode
import Json.Encode as Encode
import Server.Request exposing (Request)
import Server.Response as Response exposing (Response)
import Session
import Server.Session as Session
withSession :

View File

@ -12,7 +12,7 @@ import Pages.PageUrl exposing (PageUrl)
import Pages.Url
import Server.Request as Request exposing (Request)
import Server.Response exposing (Response)
import Session exposing (Session)
import Server.Session as Session
import Shared
import Time
import View exposing (View)

View File

@ -12,7 +12,7 @@ import Pages.PageUrl exposing (PageUrl)
import Pages.Url
import Server.Request as Request
import Server.Response
import Session
import Server.Session as Session
import Shared
import View exposing (View)

View File

@ -1,4 +1,4 @@
module Session exposing (Decoder, NotLoadedReason(..), Session(..), SessionUpdate(..), Value(..), clearFlashCookies, empty, expectSession, flash, flashPrefix, get, insert, noUpdates, oneUpdate, remove, setValues, succeed, unwrap, update, updateAllFields, withFlash, withFlash2, withSession)
module Server.Session exposing (Decoder, NotLoadedReason(..), Session(..), SessionUpdate(..), Value(..), clearFlashCookies, empty, expectSession, flash, flashPrefix, get, insert, noUpdates, oneUpdate, remove, setValues, succeed, unwrap, update, updateAllFields, withFlash, withFlash2, withSession)
{-|