0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-03 21:09:00 -05:00

♻️ Move uxbox.main.websockets to uxbox/util directory.

This commit is contained in:
Andrey Antukh 2020-05-05 15:31:49 +02:00 committed by Alonso Torres
parent 9951ec691e
commit 0cf0413ac4
2 changed files with 7 additions and 4 deletions

View file

@ -18,11 +18,11 @@
[uxbox.main.repo :as rp] [uxbox.main.repo :as rp]
[uxbox.main.store :as st] [uxbox.main.store :as st]
[uxbox.main.streams :as ms] [uxbox.main.streams :as ms]
[uxbox.main.websockets :as ws]
[uxbox.util.avatars :as avatars] [uxbox.util.avatars :as avatars]
[uxbox.util.geom.point :as gpt] [uxbox.util.geom.point :as gpt]
[uxbox.util.time :as dt] [uxbox.util.time :as dt]
[uxbox.util.transit :as t])) [uxbox.util.transit :as t]
[uxbox.util.websockets :as ws]))
(declare handle-presence) (declare handle-presence)
(declare handle-pointer-update) (declare handle-pointer-update)

View file

@ -2,9 +2,12 @@
;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;; ;;
;; Copyright (c) 2015-2017 Andrey Antukh <niwi@niwi.nz> ;; This Source Code Form is "Incompatible With Secondary Licenses", as
;; defined by the Mozilla Public License, v. 2.0.
;;
;; Copyright (c) 2020 UXBOX Labs SL
(ns uxbox.main.websockets (ns uxbox.util.websockets
"A interface to webworkers exposed functionality." "A interface to webworkers exposed functionality."
(:require (:require
[goog.events :as ev] [goog.events :as ev]